Kamil Rytarowski
cec6b45aec
Welcome to NetBSD signals
Summary:
Signals 1-32 are matching the default UNIX platform.
There are platform specific ones above 32.
From the `/usr/include/sys/signal.h` header:
```
#define SIGPWR 32 /* power fail/restart (not reset when caught) */
#ifdef _KERNEL
#define SIGRTMIN 33 /* Kernel only; not exposed to userland yet */
#define SIGRTMAX 63 /* Kernel only; not exposed to userland yet */
#endif
```
Reviewers: emaste, joerg
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D15482
llvm-svn: 255592
2015-12-15 00:50:19 +00:00
..
2015-10-01 23:07:06 +00:00
2015-09-03 08:46:55 +00:00
2015-09-02 01:59:14 +00:00
2015-11-07 04:40:13 +00:00
2015-11-19 02:50:27 +00:00
2015-12-04 19:34:00 +00:00
2015-12-12 03:06:10 +00:00
2015-09-24 03:54:50 +00:00
2015-12-08 14:08:19 +00:00
2015-12-09 01:25:01 +00:00
2015-10-14 21:37:36 +00:00
2015-11-07 04:40:13 +00:00
2015-12-03 04:56:16 +00:00
2015-10-16 05:17:25 +00:00
2015-11-03 09:04:33 +00:00
2015-12-11 19:52:15 +00:00
2015-11-21 04:00:43 +00:00
2015-12-15 00:40:30 +00:00
2015-11-13 21:53:03 +00:00
2015-09-15 21:13:50 +00:00
2015-10-12 19:03:32 +00:00
2015-12-04 02:52:49 +00:00
2015-08-14 01:38:21 +00:00
2015-12-15 00:40:30 +00:00
2015-10-02 18:40:30 +00:00
2015-12-15 00:50:19 +00:00