From 83c483a983436483b2ee1d065815a90744c5acc0 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 5 May 1997 07:24:13 +0000 Subject: [PATCH] Unknown change implemented by adams. --- v7/src/microcode/pruxdld.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/v7/src/microcode/pruxdld.c b/v7/src/microcode/pruxdld.c index 740293ba7..332c9f112 100644 --- a/v7/src/microcode/pruxdld.c +++ b/v7/src/microcode/pruxdld.c @@ -1,8 +1,8 @@ /* -*-C-*- -$Id: pruxdld.c,v 1.9 1993/11/22 19:45:13 gjr Exp $ +$Id: pruxdld.c,v 1.10 1997/05/05 07:24:13 cph Exp $ -Copyright (c) 1993 Massachusetts Institute of Technology +Copyright (c) 1993-97 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -139,7 +139,7 @@ typedef void * dyn_load_handle_t; static dyn_load_handle_t DEFUN (dyn_load, (path), char * path) { - dyn_load_handle_t result = (dlopen (path, RTLD_LAZY)); + dyn_load_handle_t result = (dlopen (path, RTLD_LAZY | RTLD_GLOBAL)); #if 0 if (result == ((dyn_load_handle_t) NULL)) -- 2.25.1