mirror of
https://github.com/matrix-construct/construct
synced 2024-11-04 12:58:53 +01:00
f94f519271
ircd: Fix some assert header conflicts. construct: Add TRAP special command handler.
54 lines
1.6 KiB
C++
54 lines
1.6 KiB
C++
// Matrix Construct
|
|
//
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
// Copyright (C) 2016-2019 Jason Volk <jason@zemos.net>
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
// full license for this software is available in the LICENSE file.
|
|
|
|
// This header allows for the use of soft-assertions. It is included before
|
|
// the standard <assert.h> and these declarations will take precedence.
|
|
//
|
|
// These declarations exist because the system declarations may have
|
|
// __attribute__((noreturn)) and our only modification here is to remove
|
|
// that. Alternative definitions to the standard library also exist in
|
|
// ircd/assert.cc
|
|
|
|
#pragma once
|
|
#define HAVE_IRCD_ASSERT_H
|
|
|
|
namespace ircd
|
|
{
|
|
void debugtrap();
|
|
}
|
|
|
|
#if defined(RB_ASSERT) && defined(_ASSERT_H_DECLS)
|
|
#error "Do not include <assert.h> or <cassert> first."
|
|
#endif
|
|
|
|
#if defined(RB_ASSERT) && !defined(NDEBUG)
|
|
#define _ASSERT_H_DECLS
|
|
|
|
extern "C" void
|
|
__attribute__((visibility("default")))
|
|
__assert_fail(const char *__assertion,
|
|
const char *__file,
|
|
unsigned int __line,
|
|
const char *__function);
|
|
|
|
extern "C" void
|
|
__attribute__((visibility("default")))
|
|
__assert_perror_fail(int __errnum,
|
|
const char *__file,
|
|
unsigned int __line,
|
|
const char *__function);
|
|
|
|
extern "C" void
|
|
__attribute__((visibility("default")))
|
|
__assert(const char *__assertion,
|
|
const char *__file,
|
|
int __line);
|
|
|
|
#endif
|