Skip to content
Snippets Groups Projects
Commit d2b81e7a authored by dtc's avatar dtc
Browse files

Re-seed the *random-state* as an after save initialisation.

Move the loading of the random number generator until after the
loading of save.lisp so that *after-save-initializations* is
initialised.
parent 68446a71
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
;;; placed in the Public domain, and is provided 'as is'. ;;; placed in the Public domain, and is provided 'as is'.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/rand-mt19937.lisp,v 1.4 1997/12/16 02:55:16 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/rand-mt19937.lisp,v 1.5 1998/01/13 19:18:00 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -85,6 +85,11 @@ ...@@ -85,6 +85,11 @@
#xffffffff)))) #xffffffff))))
(t (error "Argument is not a RANDOM-STATE, T or NIL: ~S" state))))) (t (error "Argument is not a RANDOM-STATE, T or NIL: ~S" state)))))
(pushnew #'(lambda ()
(init-random-state (logand (get-universal-time) #xffffffff)
(random-state-state *random-state*)))
ext:*after-save-initializations*)
;;;; Random entries: ;;;; Random entries:
......
...@@ -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/tools/worldbuild.lisp,v 1.39 1997/12/12 15:28:20 dtc Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/tools/worldbuild.lisp,v 1.40 1998/01/13 19:18:02 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -105,10 +105,10 @@ ...@@ -105,10 +105,10 @@
,@(when (c:backend-featurep :gencgc) ,@(when (c:backend-featurep :gencgc)
'("target:code/scavhook")) '("target:code/scavhook"))
"target:code/save"
,@(if (c:backend-featurep :random-mt19937) ,@(if (c:backend-featurep :random-mt19937)
'("target:code/rand-mt19937") '("target:code/rand-mt19937")
'("target:code/rand")) '("target:code/rand"))
"target:code/save"
"target:code/alieneval" "target:code/alieneval"
"target:code/c-call" "target:code/c-call"
"target:code/sap" "target:code/sap"
......
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