aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Innes2000-02-06 23:37:46 +0000
committerAndrew Innes2000-02-06 23:37:46 +0000
commit8f900f6e165c1a33a9321c005da33739707c2b7b (patch)
tree57681b329bec62e112ad455e3ec7df3eb15b982d /src
parentd968f7dbb71dc84b0772c174e3bf4cae94b62737 (diff)
downloademacs-8f900f6e165c1a33a9321c005da33739707c2b7b.tar.gz
emacs-8f900f6e165c1a33a9321c005da33739707c2b7b.zip
(sigmask): New function (does nothing).
(sigunblock): Ditto.
Diffstat (limited to 'src')
-rw-r--r--src/w32.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/w32.c b/src/w32.c
index 7a9f8660820..99ac51897d1 100644
--- a/src/w32.c
+++ b/src/w32.c
@@ -558,12 +558,24 @@ sigsetmask (int signal_mask)
558} 558}
559 559
560int 560int
561sigmask (int sig)
562{
563 return 0;
564}
565
566int
561sigblock (int sig) 567sigblock (int sig)
562{ 568{
563 return 0; 569 return 0;
564} 570}
565 571
566int 572int
573sigunblock (int sig)
574{
575 return 0;
576}
577
578int
567setpgrp (int pid, int gid) 579setpgrp (int pid, int gid)
568{ 580{
569 return 0; 581 return 0;