Changeset 341 for trunk/src/emx/include/sys/select.h
- Timestamp:
- Jul 10, 2003, 6:14:00 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/sys/select.h
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r340 r341 70 70 #endif /* !FD_SET */ 71 71 72 /* bird: baka baka! need memset prototype which needs size_t. */ 73 #include <sys/_types.h> 74 #if !defined(_SIZE_T_DECLARED) && !defined(_SIZE_T) /* bird: emx */ 75 typedef __size_t size_t; 76 #define _SIZE_T_DECLARED 77 #define _SIZE_T /* bird: emx */ 78 #endif 79 72 80 struct timeval; 73 81 int select (int, struct fd_set *, struct fd_set *, struct fd_set *, struct timeval *); … … 78 86 #warning int pselect(int, fd_set *, fd_set *, fd_set *, const struct timespec *, const sigset_t *); 79 87 #endif 88 80 89 81 90 #ifdef TCPV40HDRS … … 96 105 /* toolkit BSD pollution: */ 97 106 #ifndef TCPV40HDRS 107 #include <sys/_types.h> 108 #if !defined(_PID_T_DECLARED) && !defined(_PID_T) /* bird:emx */ 109 typedef __pid_t pid_t; /* process id */ 110 #define _PID_T_DECLARED 111 #define _PID_T /* bird: emx */ 112 #endif 113 98 114 /* 99 115 * Used to maintain information about processes that wish to be -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.