0.8.2.8:
[sbcl.git] / src / code / bsd-os.lisp
1 ;;;; OS interface functions for CMU CL under BSD Unix.
2
3 ;;;; This code was written as part of the CMU Common Lisp project at
4 ;;;; Carnegie Mellon University, and has been placed in the public
5 ;;;; domain.
6
7 (in-package "SB!SYS")
8
9 ;;;; Check that target machine features are set up consistently with
10 ;;;; this file.
11 #!-bsd (eval-when (:compile-toplevel :load-toplevel :execute)
12          (error "The :BSD feature is missing, we shouldn't be doing this code."))
13
14 (defun software-type ()
15   #!+sb-doc
16   "Return a string describing the supporting software."
17   (the string ; (to force error in case of unsupported BSD variant)
18        #!+FreeBSD "FreeBSD"
19        #!+OpenBSD "OpenBSD"
20        #!+Darwin "Darwin"))
21
22 (defvar *software-version* nil)
23
24 (defun software-version ()
25   #!+sb-doc
26   "Return a string describing version of the supporting software, or NIL
27    if not available."
28   (or *software-version*
29       (setf *software-version*
30             (string-trim '(#\newline)
31                          (with-output-to-string (stream)
32                            (sb!ext:run-program "/usr/bin/uname" `("-r")
33                                                :output stream))))))
34 \f
35 (defun os-cold-init-or-reinit ()
36   (setf *software-version* nil)
37   (setf *default-pathname-defaults*
38         ;; (temporary value, so that #'PATHNAME won't blow up when
39         ;; we call it below:)
40         (make-trivial-default-pathname)
41         *default-pathname-defaults*
42         ;; (final value, constructed using #'PATHNAME:)
43         (pathname (sb!unix:posix-getcwd/))))
44
45 ;;; Return system time, user time and number of page faults.
46 (defun get-system-info ()
47   (multiple-value-bind (err? utime stime maxrss ixrss idrss
48                              isrss minflt majflt)
49                        (sb!unix:unix-getrusage sb!unix:rusage_self)
50     (declare (ignore maxrss ixrss idrss isrss minflt))
51     (unless err?
52       (simple-perror "Unix system call getrusage() failed" :errno utime))
53     
54     (values utime stime majflt)))
55
56 ;;; Return the system page size.
57 (defun get-page-size ()
58   ;; FIXME: probably should call getpagesize()
59   4096)