diff options
Diffstat (limited to 'libexec/ld.so/dlfcn.c')
-rw-r--r-- | libexec/ld.so/dlfcn.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libexec/ld.so/dlfcn.c b/libexec/ld.so/dlfcn.c index b1e03fcca79..752c70a2085 100644 --- a/libexec/ld.so/dlfcn.c +++ b/libexec/ld.so/dlfcn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dlfcn.c,v 1.30 2003/09/02 15:17:51 drahn Exp $ */ +/* $OpenBSD: dlfcn.c,v 1.31 2003/09/04 19:33:48 drahn Exp $ */ /* * Copyright (c) 1998 Per Fogelstrom, Opsycon AB @@ -304,6 +304,13 @@ _dl_show_objects(void) objtypename, object->refcount, object->load_name); object = object->next; } + { + extern int _dl_symcachestat_hits; + extern int _dl_symcachestat_lookups; + DL_DEB(("symcache lookups %d hits %d ratio %d% hits\n", + _dl_symcachestat_lookups, _dl_symcachestat_hits, + (_dl_symcachestat_hits * 100) / _dl_symcachestat_lookups)); + } } static void |