Changeset 34e6f913 in rtems
- Timestamp:
- Aug 19, 2003, 8:30:41 AM (17 years ago)
- Children:
- f8c4c8a7
- Parents:
- 7224653
- Location:
- cpukit/libcsupport
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libcsupport/ChangeLog
r7224653 r34e6f913 1 2003-08-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 PR 449/rtems: 4 * src/getegid.c: New (Copied from ../posix/src). 5 * src/geteuid.c: New (Copied from ../posix/src). 6 * src/getgid.c: New (Copied from ../posix/src). 7 * src/getgroups.c: New (Copied from ../posix/src). 8 * src/getlogin.c: New (Copied from ../posix/src). 9 * src/getpgrp.c: New (Copied from ../posix/src). 10 * src/getpid.c: New (Copied from ../posix/src). 11 * src/getppid.c: New (Copied from ../posix/src). 12 * src/getuid.c: New (Copied from ../posix/src). 13 * src/setpgid.c: New (Copied from ../posix/src). 14 * src/setsid.c: New (Copied from ../posix/src). 15 * src/no_posix: Remove getpid and _getpid_r. 16 * Makefile.am: Reflect changes above. 17 1 18 2003-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 19 -
cpukit/libcsupport/Makefile.am
r7224653 r34e6f913 126 126 src/telldir.c src/getcwd.c 127 127 128 ID_C_FILES = src/getegid.c src/geteuid.c src/getgid.c src/getgroups.c \ 129 src/getlogin.c src/getpgrp.c \ 130 src/getpid.c src/getppid.c src/getuid.c src/setpgid.c src/setsid.c 131 128 132 MALLOC_C_FILES = src/malloc.c src/mallocfreespace.c src/__brk.c src/__sbrk.c 129 133 … … 151 155 EMBEDDED_C_FILES = $(LIBC_GLUE_C_FILES) $(PASSWORD_GROUP_C_FILES) \ 152 156 $(TERMINAL_IDENTIFICATION_C_FILES) $(SYSTEM_CALL_C_FILES) \ 153 $(DIRECTORY_SCAN_C_FILES) 157 $(DIRECTORY_SCAN_C_FILES) $(ID_C_FILES) 154 158 155 159 if UNIX -
cpukit/libcsupport/src/no_posix.c
r7224653 r34e6f913 3 3 * to be used when POSIX is disabled. 4 4 * 5 * + getpid6 * + _getpid_r7 5 * + kill 8 6 * + _kill_r … … 28 26 * These are directly supported (and completely correct) in the posix api. 29 27 */ 30 31 #if !defined(RTEMS_POSIX_API)32 pid_t getpid(void)33 {34 return 0;35 }36 37 #if defined(RTEMS_NEWLIB)38 #include <reent.h>39 40 pid_t _getpid_r(41 struct _reent *ptr42 )43 {44 return getpid();45 }46 #endif47 48 #endif49 28 50 29 #if !defined(RTEMS_POSIX_API)
Note: See TracChangeset
for help on using the changeset viewer.