xref: /illumos-gate/usr/src/lib/libc/port/sys/rctlsys.c (revision 3db86aab)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #pragma ident	"%Z%%M%	%I%	%E% SMI"
28 
29 #pragma weak setrctl = _setrctl
30 #pragma weak getrctl = _getrctl
31 #pragma weak rctllist = _rctllist
32 #pragma weak rctlctl = _rctlctl
33 
34 #include "synonyms.h"
35 #include <sys/types.h>
36 #include <sys/syscall.h>
37 #include <sys/rctl.h>
38 
39 int
40 getrctl(const char *name, rctlblk_t *old_rblk, rctlblk_t *new_rblk,
41     int flags)
42 {
43 	return (syscall(SYS_rctlsys,
44 	    0, name, old_rblk, new_rblk, 0, flags));
45 }
46 
47 int
48 setrctl(const char *name, rctlblk_t *old_rblk, rctlblk_t *new_rblk,
49     int flags)
50 {
51 	return (syscall(SYS_rctlsys,
52 	    1, name, old_rblk, new_rblk, 0, flags));
53 }
54 
55 size_t
56 rctllist(char *list_buf, size_t list_bufsz)
57 {
58 	sysret_t rval;
59 	int error;
60 
61 	error = __systemcall(&rval, SYS_rctlsys, 2, NULL, list_buf, NULL,
62 	    list_bufsz, 0);
63 
64 	if (error)
65 		(void) __set_errno(error);
66 	return ((size_t)rval.sys_rval1);
67 }
68 
69 int
70 rctlctl(const char *name, rctlblk_t *rblk, int flags)
71 {
72 	return (syscall(SYS_rctlsys, 3, name, rblk, NULL, 0, flags));
73 }
74