Subversion Repositories HelenOS-historic

Rev

Rev 955 | Rev 965 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 955 Rev 959
Line 29... Line 29...
29
#ifndef __SYSCALL_H__
29
#ifndef __SYSCALL_H__
30
#define __SYSCALL_H__
30
#define __SYSCALL_H__
31
 
31
 
32
typedef enum {
32
typedef enum {
33
    SYS_CTL = 0,
33
    SYS_CTL = 0,
34
    SYS_IO  = 1,
34
    SYS_IO,
35
    SYS_IPC_CALL = 2,
35
    SYS_IPC_CALL_SYNC,
-
 
36
    SYS_IPC_CALL_ASYNC,
36
    SYS_IPC_ANSWER = 3,
37
    SYS_IPC_ANSWER,
37
    SYS_IPC_WAIT = 4,
38
    SYS_IPC_WAIT,
38
    SYSCALL_END
39
    SYSCALL_END
39
} syscall_t;
40
} syscall_t;
40
 
41
 
41
#ifdef KERNEL
42
#ifdef KERNEL
42
 
43