- Timestamp:
- May 19, 2003, 5:52:55 PM (22 years ago)
- Location:
- trunk/src/emx
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/emx/syscalls.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r189 r190 173 173 int __initthread (void *preg); 174 174 int __ioctl1 (int handle, int code); 175 int __ioctl2 (int handle, intrequest, int arg);175 int __ioctl2 (int handle, unsigned long request, int arg); 176 176 int __kill (int pid, int sig); 177 177 int __listen (int handle, int backlog); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/io.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r189 r190 20 20 21 21 struct stat; 22 struct _fd_set;22 struct fd_set; 23 23 struct timeval; 24 24 … … 38 38 int fsync (int); 39 39 int ftruncate (int, long); 40 int ioctl (int, intrequest, ...);40 int ioctl (int, unsigned long request, ...); 41 41 int isatty (int); 42 42 long lseek (int, long, int); … … 46 46 int pipe (int *); 47 47 int read (int, void *, size_t); 48 int select (int, struct _fd_set *, struct _fd_set *, struct _fd_set *, 49 struct timeval *); 48 int select (int, struct fd_set *, struct fd_set *, struct fd_set *, struct timeval *); 50 49 int setmode (int, int); 51 50 int sopen (__const__ char *, int, int, ...); … … 71 70 int _ftruncate (int, long); 72 71 int _imphandle (int); 73 int _ioctl (int, intrequest, ...);72 int _ioctl (int, unsigned long request, ...); 74 73 int _isatty (int); 75 74 int _isterm (int); … … 81 80 int _read (int, void *, size_t); 82 81 int _seek_hdr (int); 83 int _select (int, struct _fd_set *, struct _fd_set *, struct _fd_set *, 84 struct timeval *); 82 int _select (int, struct fd_set *, struct fd_set *, struct fd_set *, struct timeval *); 85 83 int _setmode (int, int); 86 84 int _sopen (__const__ char *, int, int, ...); -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/sys/ioccom.h
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r189 r190 95 95 96 96 int ioctl __P((int, unsigned long, ...)); 97 int _ioctl __P((int, int, ...));97 int _ioctl __P((int, unsigned long, ...)); 98 98 __END_DECLS 99 99 -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/sys/time.h
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r189 r190 163 163 #define setitimer tcpip40_setitimer 164 164 /* @} */ 165 int _System utimes (__const__ char *, __const__ struct timeval *); 166 int _System gettimeofday (struct timeval *, struct timezone *); 167 int _System settimeofday (__const__ struct timeval *, __const__ struct timezone *); 165 /* These are libc functions so no _System convention. */ 166 int utimes (__const__ char *, __const__ struct timeval *); 167 int gettimeofday (struct timeval *, struct timezone *); 168 int settimeofday (__const__ struct timeval *, __const__ struct timezone *); 168 169 #ifndef TCPV40HDRS 169 170 #include <sys/cdefs.h> -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/sys/__ioctl2.c
-
Property cvs2svn:cvs-rev
changed from
1.2
to1.3
r189 r190 14 14 #define __IOCLW(a) ((unsigned short)(a)) 15 15 16 int __ioctl2 (int handle, intrequest, int arg)16 int __ioctl2 (int handle, unsigned long request, int arg) 17 17 { 18 18 ULONG rc; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.