Some extra flags that an HPUX user wants me to add.

This commit is contained in:
Guido van Rossum 1996-12-05 23:15:35 +00:00
parent b0c168cbe8
commit 3afb5959aa
1 changed files with 2 additions and 2 deletions

View File

@ -480,10 +480,10 @@ load_dynamic_module(name, pathname, fp)
shl_t lib;
int flags;
flags = BIND_DEFERRED;
flags = BIND_FIRST | BIND_DEFERRED;
if (verbose)
{
flags = BIND_IMMEDIATE | BIND_NONFATAL | BIND_VERBOSE;
flags = DYNAMIC_PATH | BIND_FIRST | BIND_IMMEDIATE | BIND_NONFATAL | BIND_VERBOSE;
printf("shl_load %s\n",pathname);
}
lib = shl_load(pathname, flags, 0);