aboutsummaryrefslogtreecommitdiffstats
path: root/src/signal.c
AgeCommit message (Collapse)AuthorFilesLines
2009-05-21Fix compilation issues on OS X - mainly #include file changes (Lars Immisch)Harald Welte1-1/+1
2009-02-16modify the signal handler/dispatch code (sorry zecke, no offense, I just had ↵Harald Welte1-17/+22
some different ideas) * introduce new notion of subsystem in addition to signal number * no need for bitmasks of 'areas' (aka subsystems) * pass subsystem/signal_nr/... per argument rather than by data structure
2009-02-14[signal] Fix misuse of llist_add_tail...Holger Freyther1-1/+1
The to be added llist_head comes first.......
2009-02-14[signal] Move the area into the struct signal_data...Holger Freyther1-4/+5
Remove the parameter and move the signal kind into the signal struct. Make register/deregister fully symmetric.
2009-02-14[signal] Add generic signal registration and dispatch...Holger Freyther1-0/+74
This will be used for generic registration and dispatching of any kind of event. We will have different areas (like with the debug interface) and each layer can define their own struct for the event message... This is not tested yet