systable.c (0616c1c344750b61fbfd80b1185254b28a9fe60d) systable.c (c242ec1b4cd260e90178d81575297bb3b3648766)
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 (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 6 unchanged lines hidden (view full) ---

15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
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 (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 6 unchanged lines hidden (view full) ---

15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21
22/*
23 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
25 */
26
27/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
28/* All Rights Reserved */
29
30#include <stdio.h>
31#include <stdlib.h>

--- 435 unchanged lines hidden (view full) ---

467{"getsockname", 4, DEC, NOV, DEC, HEX, HEX, SKV}, /* 244 */
468{"getsockopt", 6, DEC, NOV, DEC, SOL, SON, HEX, HEX, SKV}, /* 245 */
469{"setsockopt", 6, DEC, NOV, DEC, SOL, SON, HEX, DEC, SKV}, /* 246 */
470{"sockconfig", 4, DEC, NOV, DEC, DEC, DEC, STG}, /* 247 */
471{"ntp_gettime", 1, DEC, NOV, HEX}, /* 248 */
472{"ntp_adjtime", 1, DEC, NOV, HEX}, /* 249 */
473{"lwp_mutex_unlock", 1, DEC, NOV, HEX}, /* 250 */
474{"lwp_mutex_trylock", 1, DEC, NOV, HEX}, /* 251 */
24 * Use is subject to license terms.
25 */
26
27/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
28/* All Rights Reserved */
29
30#include <stdio.h>
31#include <stdlib.h>

--- 435 unchanged lines hidden (view full) ---

467{"getsockname", 4, DEC, NOV, DEC, HEX, HEX, SKV}, /* 244 */
468{"getsockopt", 6, DEC, NOV, DEC, SOL, SON, HEX, HEX, SKV}, /* 245 */
469{"setsockopt", 6, DEC, NOV, DEC, SOL, SON, HEX, DEC, SKV}, /* 246 */
470{"sockconfig", 4, DEC, NOV, DEC, DEC, DEC, STG}, /* 247 */
471{"ntp_gettime", 1, DEC, NOV, HEX}, /* 248 */
472{"ntp_adjtime", 1, DEC, NOV, HEX}, /* 249 */
473{"lwp_mutex_unlock", 1, DEC, NOV, HEX}, /* 250 */
474{"lwp_mutex_trylock", 1, DEC, NOV, HEX}, /* 251 */
475{"lwp_mutex_register", 1, DEC, NOV, HEX}, /* 252 */
475{"lwp_mutex_register", 2, DEC, NOV, HEX, HEX}, /* 252 */
476{"cladm", 3, DEC, NOV, CLC, CLF, HEX}, /* 253 */
477{"uucopy", 3, DEC, NOV, HEX, HEX, UNS}, /* 254 */
478{"umount2", 2, DEC, NOV, STG, MTF}, /* 255 */
479{ NULL, -1, DEC, NOV},
480};
481
482/* SYSEND == max syscall number + 1 */
483#define SYSEND ((sizeof (systable) / sizeof (struct systable))-1)

--- 1021 unchanged lines hidden ---
476{"cladm", 3, DEC, NOV, CLC, CLF, HEX}, /* 253 */
477{"uucopy", 3, DEC, NOV, HEX, HEX, UNS}, /* 254 */
478{"umount2", 2, DEC, NOV, STG, MTF}, /* 255 */
479{ NULL, -1, DEC, NOV},
480};
481
482/* SYSEND == max syscall number + 1 */
483#define SYSEND ((sizeof (systable) / sizeof (struct systable))-1)

--- 1021 unchanged lines hidden ---