diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-05 20:02:07 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-05 20:02:07 -0700 |
commit | 266097d184a48385fc44f8c5c9a4bc7ba03b6294 (patch) | |
tree | b68ead108c91919ea1c3cdb8099d041ca5ef1c49 /sysif.c | |
parent | c5c227d4ed411e4828bc0b2685693e60cef585c4 (diff) | |
download | txr-266097d184a48385fc44f8c5c9a4bc7ba03b6294.tar.gz txr-266097d184a48385fc44f8c5c9a4bc7ba03b6294.tar.bz2 txr-266097d184a48385fc44f8c5c9a4bc7ba03b6294.zip |
dlsym: improve diagnostic.
* sysif.c (dlsym_error): Show the library object and symbol
even when the system has a diagnotic. On Cygwin/Cygnal there
is a generic "No such process" error that doesn't mention the
library or symbol.
Diffstat (limited to 'sysif.c')
-rw-r--r-- | sysif.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2228,7 +2228,8 @@ static void dlsym_error(val dlptr, val name, val self) { char *err = dlerror(); if (err) - uw_throwf(error_s, lit("~a: ~a"), self, string_utf8(err), nao); + uw_throwf(error_s, lit("~a: while looking up ~a in ~s: ~a"), + self, name, dlptr, string_utf8(err), nao); else uw_throwf(error_s, lit("~a: ~a not found in ~s"), self, name, dlptr, nao); |