mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-18 04:19:21 +08:00
* include/cygwin/signal.h: Define SIGPWR as synonym for SIGLOST.
* strsig.cc: Ditto. * include/cygwin/version.h: Bump CYGWIN_VERSION_API_MINOR.
This commit is contained in:
parent
1550b620c9
commit
0512608dbc
@ -1,3 +1,9 @@
|
||||
2010-02-25 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
|
||||
|
||||
* include/cygwin/signal.h: Define SIGPWR as synonym for SIGLOST.
|
||||
* strsig.cc: Ditto.
|
||||
* include/cygwin/version.h: Bump CYGWIN_VERSION_API_MINOR.
|
||||
|
||||
2010-02-25 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* lc_era.h (lc_era_t): Fix apparent glibc bug in ja_JP era definition.
|
||||
|
@ -250,6 +250,7 @@ struct sigaction
|
||||
#define SIGPROF 27 /* profiling time alarm */
|
||||
#define SIGWINCH 28 /* window changed */
|
||||
#define SIGLOST 29 /* resource lost (eg, record-lock lost) */
|
||||
#define SIGPWR SIGLOST /* power failure */
|
||||
#define SIGUSR1 30 /* user defined signal 1 */
|
||||
#define SIGUSR2 31 /* user defined signal 2 */
|
||||
|
||||
|
@ -376,12 +376,13 @@ details. */
|
||||
220: Export accept4, SOCK_CLOEXEC, SOCK_NONBLOCK.
|
||||
221: Export strfmon.
|
||||
222: CW_INT_SETLOCALE added.
|
||||
223: SIGPWR added.
|
||||
*/
|
||||
|
||||
/* Note that we forgot to bump the api for ualarm, strtoll, strtoull */
|
||||
|
||||
#define CYGWIN_VERSION_API_MAJOR 0
|
||||
#define CYGWIN_VERSION_API_MINOR 222
|
||||
#define CYGWIN_VERSION_API_MINOR 223
|
||||
|
||||
/* There is also a compatibity version number associated with the
|
||||
shared memory regions. It is incremented when incompatible
|
||||
|
@ -49,7 +49,8 @@ struct sigdesc
|
||||
_s(SIGVTALRM, "Virtual timer expired"), /* 26 */ \
|
||||
_s(SIGPROF, "Profiling timer expired"), /* 27 */ \
|
||||
_s(SIGWINCH, "Window changed"), /* 28 */ \
|
||||
_s(SIGLOST, "Resource lost"), /* 29 */ \
|
||||
_s2(SIGPWR, "Power failure", /* 29 */ \
|
||||
SIGLOST, "Resource lost"), \
|
||||
_s(SIGUSR1, "User defined signal 1"), /* 30 */ \
|
||||
_s(SIGUSR2, "User defined signal 2"), /* 31 */ \
|
||||
_s2(SIGRTMIN, "Real-time signal 0", /* 32 */ \
|
||||
|
Loading…
x
Reference in New Issue
Block a user