Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1111 → Rev 1112

/kernel/trunk/generic/include/syscall/syscall.h
31,6 → 31,7
 
typedef enum {
SYS_IO = 0,
SYS_TLS_SET = 1, /* Hardcoded in AMD64,IA32 uspace - psthread.S */
SYS_THREAD_CREATE,
SYS_THREAD_EXIT,
SYS_FUTEX_SLEEP,
59,7 → 60,9
extern syshandler_t syscall_table[SYSCALL_END];
extern __native syscall_handler(__native a1, __native a2, __native a3,
__native a4, __native id);
extern __native sys_tls_set(__native addr);
 
 
#endif
 
#endif
/kernel/trunk/generic/src/syscall/syscall.c
75,6 → 75,7
 
syshandler_t syscall_table[SYSCALL_END] = {
sys_io,
sys_tls_set,
sys_thread_create,
sys_thread_exit,
sys_futex_sleep,