X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Flinux-os.lisp;h=640320e566e7b444aef387f9ce235d1bd76332d0;hb=085501b44cc1cbdd9e260139d30b383372ddd1b8;hp=7b1b5f427ec8f1ff9886ec2b30595d035c24a32e;hpb=b0a7abdf2bd6f2d66fcce97196024cdb0e1a1886;p=sbcl.git diff --git a/src/code/linux-os.lisp b/src/code/linux-os.lisp index 7b1b5f4..640320e 100644 --- a/src/code/linux-os.lisp +++ b/src/code/linux-os.lisp @@ -33,7 +33,7 @@ (sb!ext:run-program "/bin/uname" `("-r") :output stream)))))) -;;; Return system time, user time and number of page faults. +;;; Return user time, system time, and number of page faults. (defun get-system-info () (multiple-value-bind (err? utime stime maxrss ixrss idrss isrss minflt majflt) @@ -45,7 +45,4 @@ ;;; Return the system page size. (defun get-page-size () - ;; probably should call getpagesize() - ;; FIXME: Or we could just get rid of this, since the uses of it look - ;; disposable. - 4096) + sb!c:*backend-page-size*) \ No newline at end of file