X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fsunos-os.lisp;h=ae4b233e082ef2db4b9c147c5a2b06976d45bb8a;hb=cee8ef591040db9a79cdd19297867672a9529051;hp=63e4e3187e235c13f5e425408ba9d9224cd71032;hpb=40e3ba03d0e1b824e4d1ae75d74246b975b70964;p=sbcl.git diff --git a/src/code/sunos-os.lisp b/src/code/sunos-os.lisp index 63e4e31..ae4b233 100644 --- a/src/code/sunos-os.lisp +++ b/src/code/sunos-os.lisp @@ -1,4 +1,4 @@ -;;;; OS interface functions for CMU CL under Solaris (FIXME: SunOS?) +;;;; OS interface functions for SBCL under SunOS ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. @@ -20,8 +20,6 @@ "Return a string describing the supporting software." (values "SunOS")) -(defvar *software-version* nil) - (defun software-version () #!+sb-doc "Return a string describing version of the supporting software, or NIL @@ -33,19 +31,6 @@ (sb!ext:run-program "/bin/uname" `("-r") :output stream)))))) -(defun os-cold-init-or-reinit () ; KLUDGE: don't know what to do here - (/show "entering sunos-os.lisp OS-COLD-INIT-OR-REINIT") - (setf *software-version* nil) - (/show "setting *DEFAULT-PATHNAME-DEFAULTS*") - (setf *default-pathname-defaults* - ;; (temporary value, so that #'PATHNAME won't blow up when - ;; we call it below:) - (make-trivial-default-pathname) - *default-pathname-defaults* - ;; (final value, constructed using #'PATHNAME:) - (pathname (sb!unix:posix-getcwd/))) - (/show "leaving sunos-os.lisp OS-COLD-INIT-OR-REINIT")) - ;;; Return system time, user time and number of page faults. (defun get-system-info () (multiple-value-bind @@ -63,4 +48,8 @@ ;; disposable. ;; FIXME II: this could well be wrong #!+sparc 8192 - #!+x86 4096) + #!+(or x86 x86-64) 4096) + +;;; support for CL:MACHINE-VERSION defined OAOO elsewhere +(defun get-machine-version () + nil)