1 /*- 2 * Copyright (c) 2012 The NetBSD Foundation, Inc. 3 * All rights reserved. 4 * 5 * This code is derived from software contributed to The NetBSD Foundation 6 * by Matt Thomas of 3am Software Foundry. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 18 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 19 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 20 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 21 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 27 * POSSIBILITY OF SUCH DAMAGE. 28 */ 29 30 #include <sys/cdefs.h> 31 32 __KERNEL_RCSID(1, "$NetBSD: kern_sa_60.c,v 1.1 2012/02/19 17:40:46 matt Exp $"); 33 34 #include <sys/systm.h> 35 #include <sys/syscall.h> 36 #include <sys/syscallargs.h> 37 38 int 39 compat_60_sys_sa_register(lwp_t *l, 40 const struct compat_60_sys_sa_register_args *uap, 41 register_t *retval) 42 { 43 return sys_nosys(l, uap, retval); 44 } 45 46 int 47 compat_60_sys_sa_stacks(lwp_t *l, 48 const struct compat_60_sys_sa_stacks_args *uap, 49 register_t *retval) 50 { 51 return sys_nosys(l, uap, retval); 52 } 53 54 int 55 compat_60_sys_sa_enable(lwp_t *l, 56 const void *uap, 57 register_t *retval) 58 { 59 return sys_nosys(l, uap, retval); 60 } 61 62 int 63 compat_60_sys_sa_setconcurrency(lwp_t *l, 64 const struct compat_60_sys_sa_setconcurrency_args *uap, 65 register_t *retval) 66 { 67 return sys_nosys(l, uap, retval); 68 } 69 70 int 71 compat_60_sys_sa_yield(lwp_t *l, 72 const void *uap, 73 register_t *retval) 74 { 75 return sys_nosys(l, uap, retval); 76 } 77 78 int 79 compat_60_sys_sa_preempt(lwp_t *l, 80 const struct compat_60_sys_sa_preempt_args *uap, 81 register_t *retval) 82 { 83 return sys_nosys(l, uap, retval); 84 } 85