summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src
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/src
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/src')
-rw-r--r--c/src/exec/posix/src/execv.c3
-rw-r--r--c/src/exec/posix/src/execve.c3
-rw-r--r--c/src/exec/posix/src/execvp.c2
-rw-r--r--c/src/exec/posix/src/psignal.c2
-rw-r--r--c/src/exec/posix/src/pthreadkill.c1
-rw-r--r--c/src/exec/posix/src/sigaction.c1
-rw-r--r--c/src/exec/posix/src/sigtimedwait.c2
7 files changed, 7 insertions, 7 deletions
diff --git a/c/src/exec/posix/src/execv.c b/c/src/exec/posix/src/execv.c
index d05f4a2c58..3a2d41d107 100644
--- a/c/src/exec/posix/src/execv.c
+++ b/c/src/exec/posix/src/execv.c
@@ -8,8 +8,7 @@
int execv(
const char *file,
- char *const argv[],
- ...
+ char *const argv[]
)
{
errno = ENOSYS;
diff --git a/c/src/exec/posix/src/execve.c b/c/src/exec/posix/src/execve.c
index 478af706ea..ee3415b154 100644
--- a/c/src/exec/posix/src/execve.c
+++ b/c/src/exec/posix/src/execve.c
@@ -9,8 +9,7 @@
int execve(
const char *path,
char *const argv[],
- char *const envp[],
- ...
+ char *const envp[]
)
{
errno = ENOSYS;
diff --git a/c/src/exec/posix/src/execvp.c b/c/src/exec/posix/src/execvp.c
index a9d7694fbd..19f49fec58 100644
--- a/c/src/exec/posix/src/execvp.c
+++ b/c/src/exec/posix/src/execvp.c
@@ -8,7 +8,7 @@
int execvp(
const char *path,
- char const *argv[]
+ char *const argv[]
)
{
errno = ENOSYS;
diff --git a/c/src/exec/posix/src/psignal.c b/c/src/exec/posix/src/psignal.c
index 1df8def77d..07c2ad5b07 100644
--- a/c/src/exec/posix/src/psignal.c
+++ b/c/src/exec/posix/src/psignal.c
@@ -140,7 +140,7 @@ restart:
}
-/* XXX - add __SIGFIRSTNOTRT or something like that to newlib siginfo.h */
+/* XXX - add __SIGFIRSTNOTRT or something like that to newlib signal .h */
for ( signo = SIGHUP ; signo <= __SIGLASTNOTRT ; signo++ ) {
diff --git a/c/src/exec/posix/src/pthreadkill.c b/c/src/exec/posix/src/pthreadkill.c
index 37de5fc4c0..3b789fc8e7 100644
--- a/c/src/exec/posix/src/pthreadkill.c
+++ b/c/src/exec/posix/src/pthreadkill.c
@@ -13,6 +13,7 @@
#include <pthread.h>
+#include <signal.h>
#include <errno.h>
#include <rtems/system.h>
diff --git a/c/src/exec/posix/src/sigaction.c b/c/src/exec/posix/src/sigaction.c
index f7c525e002..aca5702329 100644
--- a/c/src/exec/posix/src/sigaction.c
+++ b/c/src/exec/posix/src/sigaction.c
@@ -13,6 +13,7 @@
#include <pthread.h>
+#include <signal.h>
#include <errno.h>
#include <rtems/system.h>
diff --git a/c/src/exec/posix/src/sigtimedwait.c b/c/src/exec/posix/src/sigtimedwait.c
index 3300b7383d..b87d9cbd3d 100644
--- a/c/src/exec/posix/src/sigtimedwait.c
+++ b/c/src/exec/posix/src/sigtimedwait.c
@@ -34,7 +34,7 @@ int _POSIX_signals_Get_highest(
return signo;
}
-/* XXX - add __SIGFIRSTNOTRT or something like that to newlib siginfo.h */
+/* XXX - add __SIGFIRSTNOTRT or something like that to newlib signal .h */
for ( signo = SIGHUP ; signo <= __SIGLASTNOTRT ; signo++ ) {
if ( set & signo_to_mask( signo ) )