Changeset f4719d5a in rtems for c/src/exec/posix
- Timestamp:
- 05/22/96 22:32:39 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ef006c1
- Parents:
- 05195890
- Location:
- c/src/exec/posix/src
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/aio.c
r05195890 rf4719d5a 5 5 6 6 #include <aio.h> 7 8 #include <rtems/system.h> 7 9 8 10 #ifdef NOT_IMPLEMENTED_YET -
c/src/exec/posix/src/cancel.c
r05195890 rf4719d5a 6 6 #include <pthread.h> 7 7 #include <errno.h> 8 9 #include <rtems/system.h> 8 10 #include <rtems/score/chain.h> 9 11 #include <rtems/score/isr.h> -
c/src/exec/posix/src/cond.c
r05195890 rf4719d5a 7 7 #include <errno.h> 8 8 9 #include <rtems/system.h> 9 10 #include <rtems/score/object.h> 10 11 #include <rtems/score/states.h> -
c/src/exec/posix/src/devctl.c
r05195890 rf4719d5a 5 5 6 6 #include <devctl.h> 7 8 #include <rtems/system.h> 7 9 8 10 #ifdef NOT_IMPLEMENTED_YET -
c/src/exec/posix/src/intr.c
r05195890 rf4719d5a 10 10 #include <errno.h> 11 11 #include <intr.h> 12 13 12 #include <pthread.h> 13 14 #include <rtems/system.h> 14 15 #include <rtems/score/isr.h> 15 16 #include <rtems/score/coresem.h> -
c/src/exec/posix/src/key.c
r05195890 rf4719d5a 9 9 #include <string.h> 10 10 11 #include <rtems/system.h> 11 12 #include <rtems/score/thread.h> 12 13 #include <rtems/score/wkspace.h> -
c/src/exec/posix/src/mqueue.c
r05195890 rf4719d5a 22 22 #include <errno.h> 23 23 #include <fcntl.h> 24 25 24 #include <mqueue.h> 25 26 26 #include <rtems/system.h> 27 27 #include <rtems/score/watchdog.h> -
c/src/exec/posix/src/mutex.c
r05195890 rf4719d5a 7 7 #include <pthread.h> 8 8 9 #include <rtems/s core/system.h>9 #include <rtems/system.h> 10 10 #include <rtems/score/coremutex.h> 11 11 #include <rtems/score/watchdog.h> 12 12 #include <rtems/score/mpci.h> 13 14 13 #include <rtems/posix/mutex.h> 15 14 #include <rtems/posix/priority.h> -
c/src/exec/posix/src/psignal.c
r05195890 rf4719d5a 6 6 #include <signal.h> 7 7 8 #include <rtems/system.h> 8 9 #include <rtems/score/thread.h> 9 10 … … 17 18 18 19 int kill( 19 int pid_t,20 pid_t pid, 20 21 int sig 21 22 ) -
c/src/exec/posix/src/pthread.c
r05195890 rf4719d5a 8 8 #include <limits.h> 9 9 10 #include <rtems/system.h> 10 11 #include <rtems/score/stack.h> 11 12 #include <rtems/score/thread.h> … … 189 190 int pthread_attr_setschedparam( 190 191 pthread_attr_t *attr, 191 const struct sched_param 192 ) 193 { 194 if ( !attr || !attr->is_initialized ) 195 return EINVAL; 196 197 attr->schedparam = param;192 const struct sched_param *param 193 ) 194 { 195 if ( !attr || !attr->is_initialized ) 196 return EINVAL; 197 198 attr->schedparam = *param; 198 199 return 0; 199 200 } -
c/src/exec/posix/src/sched.c
r05195890 rf4719d5a 5 5 6 6 #include <sched.h> 7 8 #include <rtems/system.h> 7 9 #include <rtems/score/tod.h> 8 10 #include <rtems/score/thread.h> -
c/src/exec/posix/src/time.c
r05195890 rf4719d5a 5 5 6 6 #include <time.h> 7 8 #include <rtems/system.h> 7 9 #include <rtems/score/tod.h> 8 10 -
c/src/exec/posix/src/types.c
r05195890 rf4719d5a 5 5 6 6 #include <sys/types.h> 7 8 #include <rtems/system.h> 7 9 8 10 #ifdef NOT_IMPLEMENTED_YET -
c/src/exec/posix/src/unistd.c
r05195890 rf4719d5a 5 5 6 6 #include <unistd.h> 7 8 #include <rtems/system.h> 7 9 8 10 #ifdef NOT_IMPLEMENTED_YET -
c/src/exec/posix/src/utsname.c
r05195890 rf4719d5a 9 9 #include <sys/utsname.h> 10 10 11 #include <rtems/system.h> 11 12 #include <rtems/score/system.h> 12 13 #include <rtems/score/object.h>
Note: See TracChangeset
for help on using the changeset viewer.