diff options
author | John Levon <john.levon@joyent.com> | 2020-05-26 13:57:13 +0000 |
---|---|---|
committer | John Levon <john.levon@joyent.com> | 2020-05-26 13:57:13 +0000 |
commit | 5b2acc0949194447bba6e45a0fa44d0b5f42f208 (patch) | |
tree | 7ea9eb87bc68fee386dd39035ce715e87a0e673c /usr/src/uts/common/syscall/systeminfo.c | |
parent | 8ca018083101bf1cb175869679bc123187fb1bab (diff) | |
parent | 2a1277d3064386cd5c4e372301007aa330bf1d5e (diff) | |
download | illumos-joyent-gcc9.tar.gz |
mergegcc9
Diffstat (limited to 'usr/src/uts/common/syscall/systeminfo.c')
-rw-r--r-- | usr/src/uts/common/syscall/systeminfo.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/usr/src/uts/common/syscall/systeminfo.c b/usr/src/uts/common/syscall/systeminfo.c index 21b5ac08ba..00d11e5aba 100644 --- a/usr/src/uts/common/syscall/systeminfo.c +++ b/usr/src/uts/common/syscall/systeminfo.c @@ -19,6 +19,7 @@ * CDDL HEADER END */ /* + * Copyright 2020 Oxide Computer Company * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -26,6 +27,7 @@ /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All rights reserved. */ + #include <sys/param.h> #include <sys/types.h> #include <sys/sysmacros.h> @@ -81,6 +83,9 @@ systeminfo(int command, char *buf, long count) kstr = utsname.machine; break; #ifdef _LP64 + case SI_ADDRESS_WIDTH: + kstr = "64"; + break; case SI_ARCHITECTURE_64: case SI_ARCHITECTURE_K: kstr = architecture; @@ -94,6 +99,9 @@ systeminfo(int command, char *buf, long count) architecture : architecture_32; break; #else + case SI_ADDRESS_WIDTH: + kstr = "32"; + break; case SI_ARCHITECTURE_K: case SI_ARCHITECTURE_32: case SI_ARCHITECTURE: |