Changeset 781262bb in rtems
- Timestamp:
- 10/31/00 16:33:48 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 72ad6aa
- Parents:
- c51af96e
- Files:
-
- 1 deleted
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/ChangeLog
rc51af96e r781262bb 1 2000-10-30 Joel Sherrill <joel@OARcorp.com> 2 3 * include/Makefile.am: Updated to reflect files merged into newlib. 4 This resulted in some definitions moving to other files and thus 5 some secondary effects in RTEMS source code. 6 * include/unistd.h: Removed. Now use newlib's. 7 * include/rtems/posix/mqueue.h: Add include of <signal.h>. 8 * include/rtems/posix/threadsup.h: Add include of <sys/signal.h> 9 * src/execv.c: Corrected prototype to agree with newlib. 10 * src/execve.c: Corrected prototype to agree with newlib. 11 * src/execvp.c: Corrected prototype to agree with newlib. 12 * src/psignal.c: Rewrote reference to <siginfo.h> in comment since 13 that file no longer exists. 14 * src/pthreadkill.c: Added include of <signal.h>. 15 * src/sigaction.c: Added include of <signal.h>. 16 * src/sigtimedwait.c: Rewrote reference to <siginfo.h> in comment since 17 that file no longer exists. 18 1 19 2000-10-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 20 -
c/src/exec/posix/include/Makefile.am
rc51af96e r781262bb 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 ## RTEMS unistd.h needs to be checked against newlib's and removed 8 UNUSED_H_FILES = devctl.h intr.h unistd.h 7 UNUSED_H_FILES = devctl.h intr.h 9 8 10 9 H_FILES = sched.h aio.h mqueue.h semaphore.h -
c/src/exec/posix/include/rtems/posix/mqueue.h
rc51af96e r781262bb 21 21 #endif 22 22 23 #include <s ys/siginfo.h>23 #include <signal.h> 24 24 25 25 #include <rtems/score/coremsg.h> -
c/src/exec/posix/include/rtems/posix/threadsup.h
rc51af96e r781262bb 7 7 #define __RTEMS_POSIX_THREAD_SUPPORT_h 8 8 9 #include <sys/signal.h> 9 10 #include <rtems/score/coresem.h> 10 11 #include <rtems/score/tqdata.h> -
c/src/exec/posix/src/execv.c
rc51af96e r781262bb 9 9 int execv( 10 10 const char *file, 11 char *const argv[], 12 ... 11 char *const argv[] 13 12 ) 14 13 { -
c/src/exec/posix/src/execve.c
rc51af96e r781262bb 10 10 const char *path, 11 11 char *const argv[], 12 char *const envp[], 13 ... 12 char *const envp[] 14 13 ) 15 14 { -
c/src/exec/posix/src/execvp.c
rc51af96e r781262bb 9 9 int execvp( 10 10 const char *path, 11 char const *argv[]11 char *const argv[] 12 12 ) 13 13 { -
c/src/exec/posix/src/psignal.c
rc51af96e r781262bb 141 141 } 142 142 143 /* XXX - add __SIGFIRSTNOTRT or something like that to newlib sig info.h */143 /* XXX - add __SIGFIRSTNOTRT or something like that to newlib signal .h */ 144 144 145 145 for ( signo = SIGHUP ; signo <= __SIGLASTNOTRT ; signo++ ) { -
c/src/exec/posix/src/pthreadkill.c
rc51af96e r781262bb 14 14 15 15 #include <pthread.h> 16 #include <signal.h> 16 17 #include <errno.h> 17 18 -
c/src/exec/posix/src/sigaction.c
rc51af96e r781262bb 14 14 15 15 #include <pthread.h> 16 #include <signal.h> 16 17 #include <errno.h> 17 18 -
c/src/exec/posix/src/sigtimedwait.c
rc51af96e r781262bb 35 35 } 36 36 37 /* XXX - add __SIGFIRSTNOTRT or something like that to newlib sig info.h */37 /* XXX - add __SIGFIRSTNOTRT or something like that to newlib signal .h */ 38 38 39 39 for ( signo = SIGHUP ; signo <= __SIGLASTNOTRT ; signo++ ) { -
cpukit/posix/ChangeLog
rc51af96e r781262bb 1 2000-10-30 Joel Sherrill <joel@OARcorp.com> 2 3 * include/Makefile.am: Updated to reflect files merged into newlib. 4 This resulted in some definitions moving to other files and thus 5 some secondary effects in RTEMS source code. 6 * include/unistd.h: Removed. Now use newlib's. 7 * include/rtems/posix/mqueue.h: Add include of <signal.h>. 8 * include/rtems/posix/threadsup.h: Add include of <sys/signal.h> 9 * src/execv.c: Corrected prototype to agree with newlib. 10 * src/execve.c: Corrected prototype to agree with newlib. 11 * src/execvp.c: Corrected prototype to agree with newlib. 12 * src/psignal.c: Rewrote reference to <siginfo.h> in comment since 13 that file no longer exists. 14 * src/pthreadkill.c: Added include of <signal.h>. 15 * src/sigaction.c: Added include of <signal.h>. 16 * src/sigtimedwait.c: Rewrote reference to <siginfo.h> in comment since 17 that file no longer exists. 18 1 19 2000-10-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 20 -
cpukit/posix/include/Makefile.am
rc51af96e r781262bb 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 ## RTEMS unistd.h needs to be checked against newlib's and removed 8 UNUSED_H_FILES = devctl.h intr.h unistd.h 7 UNUSED_H_FILES = devctl.h intr.h 9 8 10 9 H_FILES = sched.h aio.h mqueue.h semaphore.h -
cpukit/posix/include/rtems/posix/mqueue.h
rc51af96e r781262bb 21 21 #endif 22 22 23 #include <s ys/siginfo.h>23 #include <signal.h> 24 24 25 25 #include <rtems/score/coremsg.h> -
cpukit/posix/include/rtems/posix/threadsup.h
rc51af96e r781262bb 7 7 #define __RTEMS_POSIX_THREAD_SUPPORT_h 8 8 9 #include <sys/signal.h> 9 10 #include <rtems/score/coresem.h> 10 11 #include <rtems/score/tqdata.h> -
cpukit/posix/src/execv.c
rc51af96e r781262bb 9 9 int execv( 10 10 const char *file, 11 char *const argv[], 12 ... 11 char *const argv[] 13 12 ) 14 13 { -
cpukit/posix/src/execve.c
rc51af96e r781262bb 10 10 const char *path, 11 11 char *const argv[], 12 char *const envp[], 13 ... 12 char *const envp[] 14 13 ) 15 14 { -
cpukit/posix/src/execvp.c
rc51af96e r781262bb 9 9 int execvp( 10 10 const char *path, 11 char const *argv[]11 char *const argv[] 12 12 ) 13 13 { -
cpukit/posix/src/psignal.c
rc51af96e r781262bb 141 141 } 142 142 143 /* XXX - add __SIGFIRSTNOTRT or something like that to newlib sig info.h */143 /* XXX - add __SIGFIRSTNOTRT or something like that to newlib signal .h */ 144 144 145 145 for ( signo = SIGHUP ; signo <= __SIGLASTNOTRT ; signo++ ) { -
cpukit/posix/src/pthreadkill.c
rc51af96e r781262bb 14 14 15 15 #include <pthread.h> 16 #include <signal.h> 16 17 #include <errno.h> 17 18 -
cpukit/posix/src/sigaction.c
rc51af96e r781262bb 14 14 15 15 #include <pthread.h> 16 #include <signal.h> 16 17 #include <errno.h> 17 18 -
cpukit/posix/src/sigtimedwait.c
rc51af96e r781262bb 35 35 } 36 36 37 /* XXX - add __SIGFIRSTNOTRT or something like that to newlib sig info.h */37 /* XXX - add __SIGFIRSTNOTRT or something like that to newlib signal .h */ 38 38 39 39 for ( signo = SIGHUP ; signo <= __SIGLASTNOTRT ; signo++ ) {
Note: See TracChangeset
for help on using the changeset viewer.