diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-02-22 18:05:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-02-22 18:05:04 +0000 |
commit | 3f933dc2ef1aa201cd277a480b3954afa1f62b07 (patch) | |
tree | 834ea1edc2342589cf5f5e3bca59fa1f7028ed2a /elf/ldsodefs.h | |
parent | 69b3b3cb3873d59edfebae0cb7db58166d78f3a6 (diff) | |
download | glibc-3f933dc2ef1aa201cd277a480b3954afa1f62b07.tar.gz glibc-3f933dc2ef1aa201cd277a480b3954afa1f62b07.tar.xz glibc-3f933dc2ef1aa201cd277a480b3954afa1f62b07.zip |
Update.
1999-02-23 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * elf/dl-error.c (_dl_signal_cerror): New function. (_dl_signal_error): Don't call receiver function. * elf/dl-lookup.c (_dl_lookup_symbol): Call _dl_signal_cerror instead of _dl_signal_error when reporting references to undefined symbols or versions. (_dl_lookup_versioned_symbol): Likewise. (_dl_lookup_versioned_symbol_skip): Likewise. * elf/dl-version.c (match_symbol): Likewise. * elf/ldsodefs.h: Declare _dl_signal_cerror. * misc/getttyent.c (getttyent): Release lock on stream later to also protect global variable zapchar.
Diffstat (limited to 'elf/ldsodefs.h')
-rw-r--r-- | elf/ldsodefs.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/elf/ldsodefs.h b/elf/ldsodefs.h index 61652ddde4..392ea1787f 100644 --- a/elf/ldsodefs.h +++ b/elf/ldsodefs.h @@ -208,6 +208,13 @@ extern void _dl_signal_error (int errcode, internal_function __attribute__ ((__noreturn__)); +/* Like _dl_signal_error, but may return when called in the context of + _dl_receive_error. */ +extern void _dl_signal_cerror (int errcode, + const char *object, + const char *errstring) + internal_function; + /* Call OPERATE, catching errors from `dl_signal_error'. If there is no error, *ERRSTRING is set to null. If there is an error, *ERRSTRING is set to a string constructed from the strings passed to _dl_signal_error, @@ -219,7 +226,7 @@ extern int _dl_catch_error (char **errstring, void *args) internal_function; -/* Call OPERATE, receiving errors from `dl_signal_error'. Unlike +/* Call OPERATE, receiving errors from `dl_signal_cerror'. Unlike `_dl_catch_error' the operation is resumed after the OPERATE function returns. ARGS is passed as argument to OPERATE. */ |