about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Src/signals.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 41d33340d..1ec2f0daa 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/Src/signals.c b/Src/signals.c
index 47599a414..7ff4fca9d 100644
--- a/Src/signals.c
+++ b/Src/signals.c
@@ -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 *