Changeset 2085 for Whitix/branches/netchannel/user/libc/include/sysdefs.h
- Timestamp:
- 05/20/10 16:05:25 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/netchannel/user/libc/include/sysdefs.h
r2084 r2085 80 80 SYSCALL(58,int,SysIoAccess,4,(int on)); 81 81 82 /* Channel system calls */ 82 83 SYSCALL(59, int, SysChannelCreate, 16, (int family, void* src, void* dest, void* 83 84 options)); 84 85 SYSCALL(60, int, SysChannelControl, 12, (int fd, unsigned long code, void* data)); 86 87 /* Timer system calls */ 88 SYSCALL(61, int, SysTimerCreate, 4, (struct UserTimer* timer)); 89 SYSCALL(62, int, SysTimerModify, 12, (int timer, struct UserTimerSpec* newSpec, struct UserTimerSpec* oldSpec)); 90 SYSCALL(63, int, SysTimerDestroy, 4, (int timer)); 91 92 /* Event system calls */ 93 SYSCALL(64, int, SysEventReturn, 0, ());
