mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-18 00:51:07 +02:00
make signal queueing variables be exported to modules (13384)
This commit is contained in:
parent
bdaa4f4c05
commit
b6fb83e4ff
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-01-25 Sven Wischnowsky <wischnow@zsh.org>
|
||||
|
||||
* 13384: Src/signals.c: make signal queueing variables be exported
|
||||
to modules
|
||||
|
||||
2001-01-19 Andrej Borsenkow <Andrej.Borsenkow@mow.siemens.ru>
|
||||
|
||||
* 13370 (modified): Src/params.c: do not modify environment when
|
||||
|
|
|
@ -44,11 +44,11 @@ mod_export Eprog sigfuncs[VSIGCOUNT];
|
|||
/* Variables used by signal queueing */
|
||||
|
||||
/**/
|
||||
int queueing_enabled, queue_front, queue_rear;
|
||||
mod_export int queueing_enabled, queue_front, queue_rear;
|
||||
/**/
|
||||
int signal_queue[MAX_QUEUE_SIZE];
|
||||
mod_export int signal_queue[MAX_QUEUE_SIZE];
|
||||
/**/
|
||||
sigset_t signal_mask_queue[MAX_QUEUE_SIZE];
|
||||
mod_export sigset_t signal_mask_queue[MAX_QUEUE_SIZE];
|
||||
|
||||
/* This is only used on machines that don't understand signal sets. *
|
||||
* On SYSV machines this will represent the signals that are blocked *
|
||||
|
|
Loading…
Reference in a new issue