Module Name: src Committed By: kamil Date: Wed May 1 17:21:55 UTC 2019
Modified Files: src/sys/kern: kern_exec.c kern_fork.c kern_sig.c src/sys/sys: signalvar.h Log Message: Add eventswitch() in signal code Route all crash and debugger related signal through eventswitch(), that calls sigswitch() with preprocessed arguments. This code avoids code duplication and allows to introduce changes that will affect all callers of sigswitch() in debugger-related events. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.462 -r1.463 src/sys/kern/kern_exec.c cvs rdiff -u -r1.209 -r1.210 src/sys/kern/kern_fork.c cvs rdiff -u -r1.352 -r1.353 src/sys/kern/kern_sig.c cvs rdiff -u -r1.91 -r1.92 src/sys/sys/signalvar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.