fxlibc/include/target/vhex-generic/bits
Lephenixnoir cd7fe7a329
signal: simple implementation (DONE)
This version of signal (which does not rely on a notion of userland
processes and is thus excluded from Vhex) follows C99 semantics but does
not generate any signals by default.

Basically, the signal function sets up function pointers and the signal
function calls them. Termination signals call exit() while other signals
call _Exit(), which is a quicker program termination similar to abort().

C99 allows programs to long jump out of signal handlers (!) which is
unbelievably scary because it would bypass stack switching code in Vhex
as well as normal interrupt handler termination in gint.
2021-05-30 15:09:33 +02:00
..
asm update header guard convention 2021-05-09 23:00:11 +02:00
types update header guard convention 2021-05-09 23:00:11 +02:00
confname.h update include hierarchy 2021-05-09 17:59:07 +02:00
exit.h stdlib: add exit() based on target-provided _Exit() 2021-05-29 16:45:35 +02:00
fcntl.h update include hierarchy 2021-05-09 17:59:07 +02:00
sigaction.h update include hierarchy 2021-05-09 17:59:07 +02:00
signum.h signal: simple implementation (DONE) 2021-05-30 15:09:33 +02:00
waitflags.h update header guard convention 2021-05-09 23:00:11 +02:00
waitstatus.h update header guard convention 2021-05-09 23:00:11 +02:00