Show
Ignore:
Timestamp:
05/20/10 16:05:25 (2 years ago)
Author:
mwhitworth
Message:

Add to TCP/IP stack.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/netchannel/user/libc/include/sysdefs.h

    r2084 r2085  
    8080SYSCALL(58,int,SysIoAccess,4,(int on)); 
    8181 
     82/* Channel system calls */ 
    8283SYSCALL(59, int, SysChannelCreate, 16, (int family, void* src, void* dest, void* 
    8384                        options)); 
    8485SYSCALL(60, int, SysChannelControl, 12, (int fd, unsigned long code, void* data)); 
     86 
     87/* Timer system calls */ 
     88SYSCALL(61, int, SysTimerCreate, 4, (struct UserTimer* timer)); 
     89SYSCALL(62, int, SysTimerModify, 12, (int timer, struct UserTimerSpec* newSpec, struct UserTimerSpec* oldSpec)); 
     90SYSCALL(63, int, SysTimerDestroy, 4, (int timer)); 
     91 
     92/* Event system calls */ 
     93SYSCALL(64, int, SysEventReturn, 0, ());