Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame^] | 1 | // -*- C++ -*- |
| 2 | //===--------------------------- csignal ----------------------------------===// |
| 3 | // |
| 4 | // ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊThe LLVM Compiler Infrastructure |
| 5 | // |
| 6 | // This file is distributed under the University of Illinois Open Source |
| 7 | // License. See LICENSE.TXT for details. |
| 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_CSIGNAL |
| 12 | #define _LIBCPP_CSIGNAL |
| 13 | |
| 14 | /* |
| 15 | csignal synopsis |
| 16 | |
| 17 | Macros: |
| 18 | |
| 19 | SIG_DFL |
| 20 | SIG_ERR |
| 21 | SIG_IGN |
| 22 | SIGABRT |
| 23 | SIGFPE |
| 24 | SIGILL |
| 25 | SIGINT |
| 26 | SIGSEGV |
| 27 | SIGTERM |
| 28 | |
| 29 | namespace std |
| 30 | { |
| 31 | |
| 32 | Types: |
| 33 | |
| 34 | sig_atomic_t |
| 35 | |
| 36 | void (*signal(int sig, void (*func)(int)))(int); |
| 37 | int raise(int sig); |
| 38 | |
| 39 | } // std |
| 40 | |
| 41 | */ |
| 42 | |
| 43 | #include <__config> |
| 44 | #include <signal.h> |
| 45 | |
| 46 | #pragma GCC system_header |
| 47 | |
| 48 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 49 | |
| 50 | using ::sig_atomic_t; |
| 51 | using ::signal; |
| 52 | using ::raise; |
| 53 | |
| 54 | _LIBCPP_END_NAMESPACE_STD |
| 55 | |
| 56 | #endif // _LIBCPP_CSIGNAL |