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/syscalls.h

    r2084 r2085  
    1818{ 
    1919        unsigned long seconds,useconds; 
     20}; 
     21 
     22struct UserTimer 
     23{ 
     24        int flags; 
     25        void* data; 
     26        void (*func)(void* data); 
     27}; 
     28 
     29struct UserTimerSpec 
     30{ 
     31        unsigned long seconds, useconds; 
    2032}; 
    2133