summaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_syscall.h
diff options
context:
space:
mode:
authorperry <perry@NetBSD.org>1998-08-05 00:44:32 +0000
committerperry <perry@NetBSD.org>1998-08-05 00:44:32 +0000
commitf15ade7552142e9cc1bcced64441cb673f565273 (patch)
treedd76b7aea18de23fecdf43ada93e00697800d5fc /sys/compat/linux/linux_syscall.h
parentb791320225eacef932c411015cc0a1f7454e0d5c (diff)
enable nanosleep in linux emul, per pr-5906 from Soren S. Jorvang
Diffstat (limited to 'sys/compat/linux/linux_syscall.h')
-rw-r--r--sys/compat/linux/linux_syscall.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h
index 373a97fb282..7cd155120d3 100644
--- a/sys/compat/linux/linux_syscall.h
+++ b/sys/compat/linux/linux_syscall.h
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_syscall.h,v 1.29 1998/02/20 18:09:29 mycroft Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.30 1998/08/05 00:44:32 perry Exp $ */
/*
* System call numbers.
@@ -366,6 +366,9 @@
/* syscall: "munlock" ret: "int" args: "caddr_t" "size_t" */
#define LINUX_SYS_munlock 151
+/* syscall: "nanosleep" ret: "int" args: "const struct timespec *" "struct timespec *" */
+#define LINUX_SYS_nanosleep 162
+
/* syscall: "mremap" ret: "void *" args: "void *" "size_t" "size_t" "u_long" */
#define LINUX_SYS_mremap 163