Skip to content
Snippets Groups Projects
Commit 4206eaeb authored by wlott's avatar wlott
Browse files

Changed ``mach:rusage_self" to ``unix:rusage_self''.

parent 89c9b7e7
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/mach-os.lisp,v 1.3 1992/02/14 23:45:15 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/mach-os.lisp,v 1.4 1992/02/15 12:47:59 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
(defun get-system-info () (defun get-system-info ()
(multiple-value-bind (err? utime stime maxrss ixrss idrss (multiple-value-bind (err? utime stime maxrss ixrss idrss
isrss minflt majflt) isrss minflt majflt)
(unix:unix-getrusage mach:rusage_self) (unix:unix-getrusage unix:rusage_self)
(declare (ignore maxrss ixrss idrss isrss minflt majflt)) (declare (ignore maxrss ixrss idrss isrss minflt majflt))
(unless err? (unless err?
(error "Unix system call getrusage failed: ~A." (error "Unix system call getrusage failed: ~A."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment