1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-14 21:47:19 +02:00

Remove lockfiles and other changes

This commit is contained in:
Werner Koch 2000-12-28 15:49:42 +00:00
parent d188c1c37f
commit 94c45b7ff3
8 changed files with 38 additions and 5 deletions

View file

@ -1,3 +1,9 @@
2000-12-28 Werner Koch <wk@gnupg.org>
* signal.c (got_fatal_signal): Remove lockfiles here because the
atexit stuff does not work due to the use of raise. Suggested by
Peter Fales.
2000-12-19 Werner Koch <wk@gnupg.org>
* status.c, status.h (cpr_get_no_help): New.

View file

@ -75,6 +75,9 @@ got_fatal_signal( int sig )
sigaction( sig, &nact, NULL);
}
#endif
remove_lockfiles ();
raise( sig );
}