Source-Changes-HG archive

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

[src/trunk]: src/sys/kern Use void * instead of sa_upcall_t for sa_register (...



details:   https://anonhg.NetBSD.org/src/rev/dc440f00ebc8
branches:  trunk
changeset: 777463:dc440f00ebc8
user:      matt <matt%NetBSD.org@localhost>
date:      Sun Feb 19 17:50:28 2012 +0000

description:
Use void * instead of sa_upcall_t for sa_register (since sa_upcall_t is
going away).

diffstat:

 sys/kern/syscalls.master |  7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (21 lines):

diff -r dbae9a64b9a9 -r dc440f00ebc8 sys/kern/syscalls.master
--- a/sys/kern/syscalls.master  Sun Feb 19 17:49:09 2012 +0000
+++ b/sys/kern/syscalls.master  Sun Feb 19 17:50:28 2012 +0000
@@ -1,4 +1,4 @@
-       $NetBSD: syscalls.master,v 1.256 2012/02/19 17:22:16 matt Exp $
+       $NetBSD: syscalls.master,v 1.257 2012/02/19 17:50:28 matt Exp $
 
 ;      @(#)syscalls.master     8.2 (Berkeley) 1/13/94
 
@@ -626,9 +626,8 @@
 328    UNIMPL
 329    UNIMPL
 ; SA system calls.
-330    COMPAT_60       { int|sys||sa_register(sa_upcall_t new, \
-                               sa_upcall_t *old, int flags, \
-                               ssize_t stackinfo_offset); }
+330    COMPAT_60       { int|sys||sa_register(void *new, void **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); }



Home | Main Index | Thread Index | Old Index