Also include info about the syscall return type in the
extended_syscall_info structure. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23916 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -24,10 +24,17 @@ typedef struct syscall_parameter_info {
|
||||
type_code type;
|
||||
} syscall_parameter_info;
|
||||
|
||||
typedef struct syscall_return_type_info {
|
||||
int size;
|
||||
int used_size;
|
||||
type_code type;
|
||||
} syscall_return_type_info;
|
||||
|
||||
typedef struct extended_syscall_info {
|
||||
const char* name;
|
||||
int parameter_count;
|
||||
syscall_parameter_info parameters[MAX_SYSCALL_PARAMETERS];
|
||||
const char* name;
|
||||
int parameter_count;
|
||||
syscall_return_type_info return_type;
|
||||
syscall_parameter_info parameters[MAX_SYSCALL_PARAMETERS];
|
||||
} extended_syscall_info;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user