Changeset 0ff3df03 in rtems
- Timestamp:
- Dec 10, 2004, 4:17:50 AM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a58154f
- Parents:
- f44f0c7
- Location:
- cpukit
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
rf44f0c7 r0ff3df03 1 2004-12-10 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * posix/include/aio.h, posix/include/devctl.h, 4 posix/include/intr.h, posix/include/mqueue.h, 5 posix/include/sched.h, posix/include/semaphore.h, 6 posix/src/ptimer.c, posix/src/ptimer1.c: 7 Include <unistd.h> instead of <sys/features.h> to pick up 8 _POSIX_* defines (Mandated by POSIX). 9 1 10 2004-12-09 Ralf Corsepius <ralf.corsepius@rtems.org> 2 11 -
cpukit/posix/include/aio.h
rf44f0c7 r0ff3df03 14 14 #endif 15 15 16 #include < sys/features.h>16 #include <unistd.h> 17 17 18 18 #if defined(_POSIX_ASYNCHRONOUS_IO) -
cpukit/posix/include/devctl.h
rf44f0c7 r0ff3df03 14 14 #endif 15 15 16 #include < sys/features.h>16 #include <unistd.h> 17 17 18 18 #if defined(_POSIX_DEVICE_CONTROL) -
cpukit/posix/include/intr.h
rf44f0c7 r0ff3df03 18 18 #endif 19 19 20 #include < sys/features.h>20 #include <unistd.h> 21 21 #include <sys/types.h> 22 22 #include <sys/time.h> -
cpukit/posix/include/mqueue.h
rf44f0c7 r0ff3df03 14 14 #endif 15 15 16 #include < sys/features.h>16 #include <unistd.h> 17 17 18 18 #if defined(_POSIX_MESSAGE_PASSING) -
cpukit/posix/include/sched.h
rf44f0c7 r0ff3df03 15 15 #endif 16 16 17 #include < sys/features.h>17 #include <unistd.h> 18 18 19 19 #if defined(_POSIX_PRIORITY_SCHEDULING) -
cpukit/posix/include/semaphore.h
rf44f0c7 r0ff3df03 14 14 #endif 15 15 16 #include < sys/features.h>16 #include <unistd.h> 17 17 18 18 #if defined(_POSIX_SEMAPHORES) -
cpukit/posix/src/ptimer.c
rf44f0c7 r0ff3df03 22 22 /************************************/ 23 23 24 #include < sys/features.h>24 #include <unistd.h> 25 25 #include <rtems/rtems/status.h> 26 26 #include <rtems/rtems/types.h> -
cpukit/posix/src/ptimer1.c
rf44f0c7 r0ff3df03 22 22 /************************************/ 23 23 24 #include < sys/features.h>24 #include <unistd.h> 25 25 #include <rtems/rtems/status.h> 26 26 #include <rtems/rtems/types.h>
Note: See TracChangeset
for help on using the changeset viewer.