office-gobmx/dmake/quit.c
Vladimir Glazounov 0958549f1c INTEGRATION: CWS dmake47 (1.5.12); FILE MERGED
2006/12/21 03:16:17 vq 1.5.12.1: #i61856# Child process handling improvements.
2007-01-18 08:32:09 +00:00

106 lines
2.6 KiB
C

/* $RCSfile: quit.c,v $
-- $Revision: 1.6 $
-- last change: $Author: vg $ $Date: 2007-01-18 09:32:09 $
--
-- SYNOPSIS
-- End the dmake session.
--
-- DESCRIPTION
-- Handles dmake termination.
--
-- AUTHOR
-- Dennis Vadura, dvadura@dmake.wticorp.com
--
-- WWW
-- http://dmake.wticorp.com/
--
-- COPYRIGHT
-- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
--
-- This program is NOT free software; you can redistribute it and/or
-- modify it under the terms of the Software License Agreement Provided
-- in the file <distribution-root>/readme/license.txt.
--
-- LOG
-- Use cvs log to obtain detailed change logs.
*/
#include "extern.h"
static void _handle_quit ANSI((char*));
static int _quitting = 0; /* Set to 1 once Quit() is called for the
* first time. */
PUBLIC void
Quit( sig )/*
======== Error or quit */
int sig;
{
if( sig == SIGINT )
fprintf(stderr, "Caught SIGINT. Trying to quit ...\n");
else if( sig == SIGQUIT )
fprintf(stderr, "Caught SIGQUIT. Trying to quit ...\n");
else if( sig == 0 )
/* Don't be verbose during regular program termination. */
;
else
fprintf(stderr, "Caught signal %d. Trying to quit ...\n", sig);
if( _quitting ) return; /* Guard to only quit once. */
while( Closefile() != NIL( FILE ) );
/* CTRL-c sends SIGINT and CTRL-\ sends SIGQUIT to the parent and to all
* children. No need to kill them. */
if( sig != SIGINT && sig != SIGQUIT )
/* This should be called Kill_all_processes(). */
Clean_up_processes();
/* Wait until all Processes are done. */
while( Wait_for_child(TRUE, -1) != -1 )
;
if( Current_target != NIL(CELL) )
Unlink_temp_files(Current_target);
if( _quitting == 0 ) _handle_quit( ".ERROR" );
Set_dir( Makedir ); /* No Error message if we can't do it */
Epilog( ERROR_EXIT_VALUE );
}
PUBLIC const int
in_quit( void )/*
=================
Called to check if we are already quitting.
(Only used in unix/runargv.c.) */
{
return _quitting;
}
static void
_handle_quit( err_target )/*
============================
Called by Quit() to handle the execution of termination code
from within make */
char *err_target;
{
HASHPTR hp;
CELLPTR cp;
if( (hp = Get_name(err_target, Defs, FALSE)) != NIL(HASH) ) {
cp = hp->CP_OWNR;
Glob_attr |= A_IGNORE;
_quitting = 1;
cp->ce_flag |= F_TARGET;
Make( cp, NIL(CELL) );
/* Beware! If the ".ERROR" target doesn't finish the following
* wait will never return!!! */
while( Wait_for_child(FALSE, -1) != -1 );
}
}