* sem.cc: Always include signal.h to handle SIGSYS raise when !USE_SERVER.
* shm.cc: Ditto. * msg.cc: Always include signal.h to handle SIGSYS raise when !USE_SERVER.
This commit is contained in:
parent
bfa2e9cbb1
commit
ef7acb98aa
|
@ -1,6 +1,13 @@
|
|||
2003-11-21 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* msg.cc: Always include signal.h to handle SIGSYS raise when !USE_SERVER.
|
||||
* sem.cc: Always include signal.h to handle SIGSYS raise when
|
||||
!USE_SERVER.
|
||||
* shm.cc: Ditto.
|
||||
|
||||
2003-11-21 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* msg.cc: Always include signal.h to handle SIGSYS raise when
|
||||
!USE_SERVER.
|
||||
|
||||
2003-11-20 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@ details. */
|
|||
|
||||
#include "winsup.h"
|
||||
#include "cygerrno.h"
|
||||
#include <signal.h>
|
||||
#ifdef USE_SERVER
|
||||
#include <sys/types.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -10,6 +10,7 @@ details. */
|
|||
|
||||
#include "winsup.h"
|
||||
#include "cygerrno.h"
|
||||
#include <signal.h>
|
||||
#ifdef USE_SERVER
|
||||
#include <sys/types.h>
|
||||
#include <sys/queue.h>
|
||||
|
|
Loading…
Reference in New Issue