summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/include/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-10-31 16:33:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-10-31 16:33:48 +0000
commit781262bb5bd6f109e17e2c9a8515f1bb394f37c6 (patch)
tree2f29edc50e7a385213e266b3521bf6137a64db0d /c/src/exec/posix/include/rtems
parent2000-10-29 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-781262bb5bd6f109e17e2c9a8515f1bb394f37c6.tar.bz2
2000-10-30 Joel Sherrill <joel@OARcorp.com>
* include/Makefile.am: Updated to reflect files merged into newlib. This resulted in some definitions moving to other files and thus some secondary effects in RTEMS source code. * include/unistd.h: Removed. Now use newlib's. * include/rtems/posix/mqueue.h: Add include of <signal.h>. * include/rtems/posix/threadsup.h: Add include of <sys/signal.h> * src/execv.c: Corrected prototype to agree with newlib. * src/execve.c: Corrected prototype to agree with newlib. * src/execvp.c: Corrected prototype to agree with newlib. * src/psignal.c: Rewrote reference to <siginfo.h> in comment since that file no longer exists. * src/pthreadkill.c: Added include of <signal.h>. * src/sigaction.c: Added include of <signal.h>. * src/sigtimedwait.c: Rewrote reference to <siginfo.h> in comment since that file no longer exists. *
Diffstat (limited to 'c/src/exec/posix/include/rtems')
-rw-r--r--c/src/exec/posix/include/rtems/posix/mqueue.h2
-rw-r--r--c/src/exec/posix/include/rtems/posix/threadsup.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/c/src/exec/posix/include/rtems/posix/mqueue.h b/c/src/exec/posix/include/rtems/posix/mqueue.h
index e3f7a2f073..6b2cb9e464 100644
--- a/c/src/exec/posix/include/rtems/posix/mqueue.h
+++ b/c/src/exec/posix/include/rtems/posix/mqueue.h
@@ -20,7 +20,7 @@
extern "C" {
#endif
-#include <sys/siginfo.h>
+#include <signal.h>
#include <rtems/score/coremsg.h>
#include <rtems/score/object.h>
diff --git a/c/src/exec/posix/include/rtems/posix/threadsup.h b/c/src/exec/posix/include/rtems/posix/threadsup.h
index ee93f8252c..2ffc606911 100644
--- a/c/src/exec/posix/include/rtems/posix/threadsup.h
+++ b/c/src/exec/posix/include/rtems/posix/threadsup.h
@@ -6,6 +6,7 @@
#ifndef __RTEMS_POSIX_THREAD_SUPPORT_h
#define __RTEMS_POSIX_THREAD_SUPPORT_h
+#include <sys/signal.h>
#include <rtems/score/coresem.h>
#include <rtems/score/tqdata.h>