From 2e1e9491835c74633f63067511b49240954dda44 Mon Sep 17 00:00:00 2001 From: emarsden <emarsden> Date: Sun, 13 Jun 2004 09:55:20 +0000 Subject: [PATCH] Fixes to REINITIALIZE-GLOBAL-TABLE: ignore invalid entries in the *GLOBAL-TABLE*, and reload files in the same order as they were initially loaded. From Lynn Quamm. --- code/foreign.lisp | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/code/foreign.lisp b/code/foreign.lisp index e491f67af..5d54b9441 100644 --- a/code/foreign.lisp +++ b/code/foreign.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.47 2004/06/01 16:11:29 emarsden Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.48 2004/06/13 09:55:20 emarsden Exp $") ;;; ;;; ********************************************************************** ;;; @@ -637,19 +637,21 @@ to skip undefined symbols which don't have an address." ;; stale handles in the saved image. (setf (car lib-entry) (int-sap 0))))) -;;; Open all the libraries in *global-table* +;;; Open all the libraries in *GLOBAL-TABLE*. We open them in the same +;;; order as the first time they were loaded, so that any dependencies +;;; on load order are respected. (defun reinitialize-global-table () - (loop for lib-entry in *global-table* + (loop for lib-entry in (reverse *global-table*) for (sap . lib-path) = lib-entry - for new-sap = (dlopen (namestring lib-path) - (logior rtld-now rtld-global)) - do (progn + when lib-path + do (let ((new-sap (dlopen (namestring lib-path) + (logior rtld-now rtld-global)))) (when (zerop (sap-int new-sap)) ;; We're going down (error "Couldn't open library ~S: ~S" lib-path (dlerror))) (setf (car lib-entry) new-sap))) (alien:alien-funcall (alien:extern-alien "os_resolve_data_linkage" - (alien:function c-call:void)))) + (alien:function c-call:void)))) (defun alternate-get-global-address (symbol) (ensure-lisp-table-opened) -- GitLab