mirror of
https://github.com/adtools/clib2.git
synced 2025-12-08 14:59:05 +00:00
- raise() no longer resets the signal handler before it invokes the one
currently configured. It merely blocks the delivery of the respective signal to prevent recursion. - raise() now drops into abort() if a signal handler is set to SIG_DFL. The exception is in SIGINT delivery, which has the effect of printing a different termination message but otherwise program flow takes the same path as abort(). git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14907 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: unistd_unlink.c,v 1.6 2005-03-18 12:38:25 obarthel Exp $
|
||||
* $Id: unistd_unlink.c,v 1.7 2005-03-27 10:02:50 obarthel Exp $
|
||||
*
|
||||
* :ts=4
|
||||
*
|
||||
@ -53,6 +53,7 @@
|
||||
|
||||
/****************************************************************************/
|
||||
|
||||
/* ZZZ unlink() must be reentrant according to POSIX.1 */
|
||||
int
|
||||
unlink(const char * path_name)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user