diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-06-07 15:00:39 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-06-07 15:00:39 +0000 |
commit | 04fb078cd155fa471954235ed9fe677d2ee6db62 (patch) | |
tree | c073deedd56f99375ba1e1974dabadfa1bddb8fa /libexec/ld.so | |
parent | 9ff3aa912abb53bd7cd4fe671538b7fca827e924 (diff) |
debugging notify that dlopen() has finished as it was said when it had started; drahn@ ok
Diffstat (limited to 'libexec/ld.so')
-rw-r--r-- | libexec/ld.so/dlfcn.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libexec/ld.so/dlfcn.c b/libexec/ld.so/dlfcn.c index c1bff3e21ab..e798d128fd7 100644 --- a/libexec/ld.so/dlfcn.c +++ b/libexec/ld.so/dlfcn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dlfcn.c,v 1.36 2004/05/25 18:07:20 mickey Exp $ */ +/* $OpenBSD: dlfcn.c,v 1.37 2004/06/07 15:00:38 mickey Exp $ */ /* * Copyright (c) 1998 Per Fogelstrom, Opsycon AB @@ -116,6 +116,9 @@ dlopen(const char *libname, int flags) _dl_debug_map->r_state = RT_CONSISTENT; (*((void (*)(void))_dl_debug_map->r_brk))(); } + + DL_DEB(("dlopen: %s: done.\n", libname)); + return((void *)object); } |