Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > gnu.bash.bug > #15787
| From | Martijn Dekker <martijn@inlv.org> |
|---|---|
| Newsgroups | gnu.bash.bug |
| Subject | Spurious recursive trap invocation warning |
| Date | 2019-12-29 19:34 +0000 |
| Message-ID | <mailman.1648.1577648096.1979.bug-bash@gnu.org> (permalink) |
| References | <672c11dd-cf3c-f903-f222-20b6b06454be@inlv.org> |
The current git version of bash (at least on x86_64-apple-darwin18.7.0) gives a spurious warning about a recursive trap invocation when running the following more than once on an interactive shell. The trap unsets itself before resending the signal, so there should be no recursive invocation. bash-5.0$ echo $BASH_VERSION 5.0.11(1)-maint bash-5.0$ trap 'echo int; trap - INT; kill -s INT $$' INT; kill -s INT $$ int bash-5.0$ trap 'echo int; trap - INT; kill -s INT $$' INT; kill -s INT $$ bash: warning: run_pending_traps: recursive invocation while running trap for signal 2 int bash-5.0$ trap 'echo int; trap - INT; kill -s INT $$' INT; kill -s INT $$ bash: warning: run_pending_traps: recursive invocation while running trap for signal 2 int Thanks and happy new year, - M. -- modernish -- harness the shell https://github.com/modernish/modernish
Back to gnu.bash.bug | Previous | Next | Find similar | Unroll thread
Spurious recursive trap invocation warning Martijn Dekker <martijn@inlv.org> - 2019-12-29 19:34 +0000
csiph-web