From 365f9e9bffe4af7589e4e911ea7aa5f2de9bb087 Mon Sep 17 00:00:00 2001 From: Matt Birkholz Date: Sat, 21 Feb 2015 18:17:32 -0700 Subject: [PATCH] smp: Move call to make-fluid. Squash into 99bc079. Presumably 99bc079 does not build without moving the make-fluid from initialize-low! to initialize-high!. --- src/runtime/thread.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/thread.scm b/src/runtime/thread.scm index ef8ea6e28..6d180f689 100644 --- a/src/runtime/thread.scm +++ b/src/runtime/thread.scm @@ -164,7 +164,6 @@ USA. (define (initialize-low!) ;; Called early in the cold load to create the first thread. - (set! root-continuation-default (make-fluid #f)) (set! thread-population (make-population)) (set! first-runnable-thread #f) (set! last-runnable-thread #f) @@ -183,6 +182,7 @@ USA. (define (initialize-high!) ;; Called later in the cold load, when more of the runtime is initialized. + (set! root-continuation-default (make-fluid #f)) (initialize-error-conditions!) (reset-threads-high!) (add-event-receiver! event:after-restore reset-threads!) -- 2.25.1