Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Add SYS_compat_60__lwp_park to the list of syscalls...



details:   https://anonhg.NetBSD.org/src/rev/97bb19ae868e
branches:  trunk
changeset: 791966:97bb19ae868e
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Sat Dec 14 06:27:57 2013 +0000

description:
Add SYS_compat_60__lwp_park to the list of syscalls that can be resolved by loading kernel modules.

This seems to address my PR kern/48027

diffstat:

 sys/kern/kern_syscall.c |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 9cb75ab899fb -r 97bb19ae868e sys/kern/kern_syscall.c
--- a/sys/kern/kern_syscall.c   Sat Dec 14 05:28:47 2013 +0000
+++ b/sys/kern/kern_syscall.c   Sat Dec 14 06:27:57 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: kern_syscall.c,v 1.8 2013/12/09 16:49:43 pooka Exp $   */
+/*     $NetBSD: kern_syscall.c,v 1.9 2013/12/14 06:27:57 pgoyette Exp $        */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_syscall.c,v 1.8 2013/12/09 16:49:43 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_syscall.c,v 1.9 2013/12/14 06:27:57 pgoyette Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_modular.h"
@@ -190,6 +190,7 @@
            { SYS_compat_50___ntp_gettime30, "compat" },
            { SYS_compat_50___fhstat40, "compat" },
            { SYS_compat_50_aio_suspend, "compat" },
+           { SYS_compat_60__lwp_park, "compat" },
            { SYS__ksem_init, "ksem" },
            { SYS__ksem_open, "ksem" },
            { SYS__ksem_unlink, "ksem" },



Home | Main Index | Thread Index | Old Index