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
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.
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]
22 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
23 /* All Rights Reserved */
27 * Copyright 2014 Garrett D'Amore <garrett@damore.org>
29 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
30 * Use is subject to license terms.
33 #ifndef _SYS_UTSNAME_H
34 #define _SYS_UTSNAME_H
36 #include <sys/feature_tests.h>
39 #include <sys/stdbool.h>
46 #define _SYS_NMLN 257 /* 4.0 size of utsname elements */
47 /* Must be at least 257 to */
48 /* support Internet hostnames. */
50 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
52 #define SYS_NMLN _SYS_NMLN
54 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
57 char sysname
[_SYS_NMLN
];
58 char nodename
[_SYS_NMLN
];
59 char release
[_SYS_NMLN
];
60 char version
[_SYS_NMLN
];
61 char machine
[_SYS_NMLN
];
64 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
65 extern struct utsname utsname
;
66 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
70 #if defined(__i386) && !defined(__amd64)
72 extern int uname(struct utsname
*);
73 extern int _uname(struct utsname
*);
75 #if !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__)
76 extern int nuname(struct utsname
*);
77 #endif /* !defined(__XOPEN_OR_POSIX) || defined(__EXTENSIONS__) */
78 extern int _nuname(struct utsname
*);
81 * On i386 in SVID.2 uname() returns a utsname structure with 8 byte members,
82 * and nuname() returns the real struct utsname. In SVID.3 uname and nuname
83 * are equivalent. Anyone who includes this header gets the SVID.3 behaviour.
84 * The SVID.2 behaviour exists solely for compatibility, and is what is
85 * implemented by the libc uname/_uname entrypoints.
87 #ifdef __PRAGMA_REDEFINE_EXTNAME
88 #pragma redefine_extname uname _nuname
89 #pragma redefine_extname _uname _nuname
92 #define _uname _nuname
95 #else /* defined(__i386) */
97 extern int uname(struct utsname
*);
99 #endif /* defined(__i386) */
101 #else /* !(_KERNEL) */
103 * Routine to retrieve the nodename as seen in the current process's zone.
105 extern char *uts_nodename(void);
108 * Routines to access parts of the utsname.
110 extern const struct utsname
*utsname_get(bool legacy
);
111 extern void utsname_set_machine(const char *machine
);
113 #endif /* !(_KERNEL) */
119 #endif /* _SYS_UTSNAME_H */