Raymond Toy pushed to branch issue-120-software-type-in-c at cmucl / cmucl
Commits: 550b8762 by Raymond Toy at 2023-04-19T06:54:41-07:00 Address review comments
Remove the decache comment in `os-init` in bsd-os.lisp and linux-os.lisp.
- - - - -
2 changed files:
- src/code/bsd-os.lisp - src/code/linux-os.lisp
Changes:
===================================== src/code/bsd-os.lisp ===================================== @@ -54,7 +54,6 @@ ;;; that set up the argument blocks for the server interfaces.
(defun os-init () - ;; Decache version on save, because it might not be the same when we restart. (setf *software-version* nil))
;;; GET-PAGE-SIZE -- Interface
===================================== src/code/linux-os.lisp ===================================== @@ -31,7 +31,6 @@ ;;; OS-Init initializes our operating-system interface. ;;; (defun os-init () - ;; Decache version on save, because it might not be the same when we restart. (setf *software-version* nil))
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/550b876213f2ab6aded82abe...