diff options
author | Paul Irofti <pirofti@cvs.openbsd.org> | 2011-04-04 21:50:42 +0000 |
---|---|---|
committer | Paul Irofti <pirofti@cvs.openbsd.org> | 2011-04-04 21:50:42 +0000 |
commit | ad5e05a01fc1d55df62eac681d998aae7ceecd8f (patch) | |
tree | 692aba676c8ddf76a9f15af0b667047c2aa6e4cd /sys/compat/linux | |
parent | 85ee6d70016bfe1c186ef68e1ace540513b853a0 (diff) |
Add linux_sys_[g|s]et_set_thread_area() support. Okay guenther@.
Diffstat (limited to 'sys/compat/linux')
-rw-r--r-- | sys/compat/linux/syscalls.master | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/compat/linux/syscalls.master b/sys/compat/linux/syscalls.master index ff75ec654d1..046b44df9c4 100644 --- a/sys/compat/linux/syscalls.master +++ b/sys/compat/linux/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.53 2011/02/11 21:40:04 pirofti Exp $ + $OpenBSD: syscalls.master,v 1.54 2011/04/04 21:50:41 pirofti Exp $ ; $NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -383,8 +383,10 @@ 240 UNIMPL linux_sys_futex 241 UNIMPL linux_sys_sched_setaffinity 242 UNIMPL linux_sys_sched_getaffinity -243 UNIMPL linux_sys_set_thread_area -244 UNIMPL linux_sys_get_thread_area +243 STD { int linux_sys_set_thread_area( \ + struct l_segment_descriptor *desc); } +244 STD { int linux_sys_get_thread_area( \ + struct l_segment_descriptor *desc); } 245 UNIMPL linux_sys_io_setup 246 UNIMPL linux_sys_io_destroy 247 UNIMPL linux_sys_io_getevents |