Source-Changes-HG archive

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

[src/trunk]: src/sys/kern Make SA syscalls as COMPAT_60



details:   https://anonhg.NetBSD.org/src/rev/aa158fc2b6d4
branches:  trunk
changeset: 777458:aa158fc2b6d4
user:      matt <matt%NetBSD.org@localhost>
date:      Sun Feb 19 17:22:16 2012 +0000

description:
Make SA syscalls as COMPAT_60

diffstat:

 sys/kern/syscalls.master |  18 ++++++++++--------
 1 files changed, 10 insertions(+), 8 deletions(-)

diffs (32 lines):

diff -r 46d66bcebc08 -r aa158fc2b6d4 sys/kern/syscalls.master
--- a/sys/kern/syscalls.master  Sun Feb 19 17:08:02 2012 +0000
+++ b/sys/kern/syscalls.master  Sun Feb 19 17:22:16 2012 +0000
@@ -1,4 +1,4 @@
-       $NetBSD: syscalls.master,v 1.255 2012/02/19 17:08:02 rmind Exp $
+       $NetBSD: syscalls.master,v 1.256 2012/02/19 17:22:16 matt Exp $
 
 ;      @(#)syscalls.master     8.2 (Berkeley) 1/13/94
 
@@ -625,13 +625,15 @@
 327    UNIMPL
 328    UNIMPL
 329    UNIMPL
-; Obsolete SA system calls.  Must remain until libc major version is bumped.
-330    STD             { int|sys||sa_register(void); }
-331    STD             { int|sys||sa_stacks(void); }
-332    STD             { int|sys||sa_enable(void); }
-333    STD             { int|sys||sa_setconcurrency(void); }
-334    STD             { int|sys||sa_yield(void); }
-335    STD             { int|sys||sa_preempt(void); }
+; SA system calls.
+330    COMPAT_60       { int|sys||sa_register(sa_upcall_t new, \
+                               sa_upcall_t *old, int flags, \
+                               ssize_t stackinfo_offset); }
+331    COMPAT_60       { int|sys||sa_stacks(int num, stack_t *stacks); }
+332    COMPAT_60       { int|sys||sa_enable(void); }
+333    COMPAT_60       { int|sys||sa_setconcurrency(int concurrency); }
+334    COMPAT_60       { int|sys||sa_yield(void); }
+335    COMPAT_60       { int|sys||sa_preempt(int sa_id); }
 336    OBSOL           sys_sa_unblockyield
 ;
 ; Syscalls 337-339 are reserved for other scheduler activation syscalls.



Home | Main Index | Thread Index | Old Index