Changeset 1035
- Timestamp:
- Jan 24, 2004, 10:59:04 PM (22 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 5 edited
-
include/signal.h (modified) (1 diff, 1 prop)
-
include/string.h (modified) (2 diffs, 1 prop)
-
src/lib/bsd/gen/siglist.c (modified) (2 diffs, 1 prop)
-
src/lib/bsd/string/strsignal.c (modified) (1 diff, 1 prop)
-
src/lib/libc.def (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/signal.h
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r1034 r1035 3 3 #ifndef _SIGNAL_H 4 4 #define _SIGNAL_H 5 5 6 #include <sys/signal.h> 7 8 9 10 11 12 13 14 15 16 17 18 6 19 #endif /* not _SIGNAL_H */ -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/string.h
-
Property cvs2svn:cvs-rev
changed from
1.8to1.9
r1034 r1035 89 89 char *strerror(int); 90 90 #if __POSIX_VISIBLE >= 200112 91 /** @todo int strerror_r(int, char *, size_t);*/ 91 int strerror_r(int, char *, size_t); 92 92 #endif 93 93 #if __BSD_VISIBLE … … 109 109 #if __BSD_VISIBLE 110 110 char *strsep(char **, const char *); 111 /** @todo char *strsignal(int); */ 111 char *strsignal(int); 112 112 #endif 113 113 size_t strspn(const char *, const char *); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/gen/siglist.c
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r1034 r1035 71 71 "prof", /* SIGPROF */ 72 72 "winch", /* SIGWINCH */ 73 73 74 "info", /* SIGINFO */ 74 75 "usr1", /* SIGUSR1 */ 75 76 "usr2" /* SIGUSR2 */ 77 76 78 }; 77 79 … … 106 108 "Profiling timer expired", /* SIGPROF */ 107 109 "Window size changes", /* SIGWINCH */ 110 108 111 "Information request", /* SIGINFO */ 109 112 "User defined signal 1", /* SIGUSR1 */ 110 113 "User defined signal 2" /* SIGUSR2 */ 114 111 115 }; 112 116 const int sys_nsig = sizeof(sys_siglist) / sizeof(sys_siglist[0]); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/bsd/string/strsignal.c
-
Property cvs2svn:cvs-rev
changed from
1.1to1.2
r1034 r1035 32 32 */ 33 33 34 35 36 34 37 #if defined(LIBC_SCCS) && !defined(lint) 35 38 static char sccsid[] = "@(#)strerror.c 8.1 (Berkeley) 6/4/93"; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/libc.def
-
Property cvs2svn:cvs-rev
changed from
1.41to1.42
r1034 r1035 66 66 "_optreset" @46 67 67 "___progname" @47 68 69 70 68 71 69 72 … … 987 990 "___posix_spawn_file_actions_realloc" @1017 988 991 "___spawni" @1018 992 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
