From 3b086fb19c901f84a3ded7cdcbf4e885f39308ae Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Tue, 3 Jan 2006 17:58:20 +0000 Subject: [PATCH] Add support for sysinfo on Solaris. code/unix.lisp: o Add UNIX-SYSINFO and appropriate constants. code/exports.lisp: o Export UNIX-SYSINFO and corresponding constants. code/sparc-svr4-vm.lisp: o Use UNIX-SYSINFO to provide better values for MACHINE-TYPE and MACHINE-VERSION. Instead of the generic "Ultrasparc", we can return things like "sun4u" and "SUNW,Sun-Blade-1500". Use bootfiles/19c/boot-2005-12-2.lisp to bootstrap this change. Only needed for sparc. --- bootfiles/19c/boot-2005-12-2.lisp | 3 +++ code/exports.lisp | 7 ++++++- code/sparc-svr4-vm.lisp | 8 +++----- code/unix.lisp | 25 ++++++++++++++++++++++++- 4 files changed, 36 insertions(+), 7 deletions(-) create mode 100644 bootfiles/19c/boot-2005-12-2.lisp diff --git a/bootfiles/19c/boot-2005-12-2.lisp b/bootfiles/19c/boot-2005-12-2.lisp new file mode 100644 index 000000000..c03848b4e --- /dev/null +++ b/bootfiles/19c/boot-2005-12-2.lisp @@ -0,0 +1,3 @@ +;; Needed by sparc to export the unix-sysinfo interface. +#+sparc +(load "target:code/exports.lisp") diff --git a/code/exports.lisp b/code/exports.lisp index 2c364de77..dea1d3466 100644 --- a/code/exports.lisp +++ b/code/exports.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.249 2005/11/13 19:27:22 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/exports.lisp,v 1.250 2006/01/03 17:58:18 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -348,6 +348,11 @@ "USER-INFO-DIR" "USER-INFO-GID" "GROUP-INFO-GID") + #+(and solaris svr4) + (:export "UNIX-SYSINFO" + "SI-SYSNAME" "SI-HOSTNAME" "SI-RELEASE" "SI-VERSION" "SI-MACHINE" + "SI-ARCHITECTURE" "SI-HW-SERIAL" "SI-HW-PROVIDER" "SI-SRPC-DOMAIN" + "SI-PLATFORM" "SI-ISALIST" "SI-DHCP-CACHE") ) (defpackage "FORMAT") diff --git a/code/sparc-svr4-vm.lisp b/code/sparc-svr4-vm.lisp index 4e1e6d0ae..3cff4b5b3 100644 --- a/code/sparc-svr4-vm.lisp +++ b/code/sparc-svr4-vm.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sparc-svr4-vm.lisp,v 1.7 2003/08/22 13:20:03 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/sparc-svr4-vm.lisp,v 1.8 2006/01/03 17:58:20 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -127,13 +127,11 @@ (defun machine-type () "Returns a string describing the type of the local machine." - #-sparc-v9 "SPARCstation" - #+sparc-v9 "Ultrasparc") + (unix:unix-sysinfo unix:si-machine)) (defun machine-version () "Returns a string describing the version of the local machine." - #-sparc-v9 "SPARCstation" - #+sparc-v9 "Ultrasparc") + (unix:unix-sysinfo unix:si-platform)) diff --git a/code/unix.lisp b/code/unix.lisp index 39947b042..64d2fa145 100644 --- a/code/unix.lisp +++ b/code/unix.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.107 2005/10/10 18:46:39 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.108 2006/01/03 17:58:20 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -3339,4 +3339,27 @@ (cast (slot names 'machine) c-string)))))) ) +#+(and solaris svr4) +(progn +(def-alien-routine sysinfo long + (command int) + (buf c-string) + (count long)) + +;; From sys/systeminfo.h. We don't list the set values here. +(def-enum + 1 + si-sysname si-hostname si-release si-version si-machine + si-architecture si-hw-serial si-hw-provider si-srpc-domain) + +(def-enum + 513 + si-platform si-isalist si-dhcp-cache) + +(defun unix-sysinfo (command) + (let* ((count 2048) ; Hope this is long enough! + (buf (make-string count)) + (result (sysinfo command buf count))) + (when (>= result 0) + (subseq buf 0 (1- result))))) +) + ;; EOF -- GitLab