]> git.marmaro.de Git - mmh/blobdiff - sbr/context_save.c
We are making POSIX signal support a requirement.
[mmh] / sbr / context_save.c
index 1a381db2b30cdb01f0d1f4b9512ea495c04cb1a5..d1371d017afc4b91f1ca25817f84f725a9c477b4 100644 (file)
@@ -40,7 +40,7 @@ context_save(void)
        sigaddset(&set, SIGINT);
        sigaddset(&set, SIGQUIT);
        sigaddset(&set, SIGTERM);
        sigaddset(&set, SIGINT);
        sigaddset(&set, SIGQUIT);
        sigaddset(&set, SIGTERM);
-       SIGPROCMASK(SIG_BLOCK, &set, &oset);
+       sigprocmask(SIG_BLOCK, &set, &oset);
 
        if (!(out = lkfopen(ctxpath, "w")))
                adios(ctxpath, "unable to write");
 
        if (!(out = lkfopen(ctxpath, "w")))
                adios(ctxpath, "unable to write");
@@ -49,7 +49,7 @@ context_save(void)
                        fprintf(out, "%s: %s\n", np->n_name, np->n_field);
        lkfclose(out, ctxpath);
 
                        fprintf(out, "%s: %s\n", np->n_name, np->n_field);
        lkfclose(out, ctxpath);
 
-       SIGPROCMASK(SIG_SETMASK, &oset, &set); /* reset the signal mask */
+       sigprocmask(SIG_SETMASK, &oset, &set); /* reset the signal mask */
 
        if (action == 0)
                _exit(0);    /* we are child, time to die */
 
        if (action == 0)
                _exit(0);    /* we are child, time to die */