2020-11-07 02:34:14 +03:00
|
|
|
// csignal standard header (core)
|
2019-09-05 01:57:56 +03:00
|
|
|
|
|
|
|
// Copyright (c) Microsoft Corporation.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
|
|
|
|
#ifndef _CSIGNAL_
|
|
|
|
#define _CSIGNAL_
|
2020-11-07 02:34:14 +03:00
|
|
|
#include <yvals_core.h>
|
2019-09-05 01:57:56 +03:00
|
|
|
#if _STL_COMPILER_PREPROCESSOR
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#pragma pack(push, _CRT_PACKING)
|
|
|
|
#pragma warning(push, _STL_WARNING_LEVEL)
|
|
|
|
#pragma warning(disable : _STL_DISABLED_WARNINGS)
|
|
|
|
_STL_DISABLE_CLANG_WARNINGS
|
|
|
|
#pragma push_macro("new")
|
|
|
|
#undef new
|
|
|
|
|
|
|
|
_STD_BEGIN
|
2022-09-20 00:47:02 +03:00
|
|
|
_EXPORT_STD using _CSTD sig_atomic_t;
|
|
|
|
_EXPORT_STD using _CSTD raise;
|
2022-03-19 12:22:21 +03:00
|
|
|
#ifndef _M_CEE_PURE
|
2022-09-20 00:47:02 +03:00
|
|
|
_EXPORT_STD using _CSTD signal;
|
2023-08-11 02:48:21 +03:00
|
|
|
#endif // !defined(_M_CEE_PURE)
|
2019-09-05 01:57:56 +03:00
|
|
|
_STD_END
|
|
|
|
|
|
|
|
#pragma pop_macro("new")
|
|
|
|
_STL_RESTORE_CLANG_WARNINGS
|
|
|
|
#pragma warning(pop)
|
|
|
|
#pragma pack(pop)
|
|
|
|
|
|
|
|
#endif // _STL_COMPILER_PREPROCESSOR
|
|
|
|
#endif // _CSIGNAL_
|