File: fexit.c

package info (click to toggle)
cti-ifhp 2.1.8-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 932 kB
  • ctags: 845
  • sloc: ansic: 6,036; sh: 1,524; makefile: 318
file content (24 lines) | stat: -rw-r--r-- 545 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**************************************************************************
 * LPRng IFHP Filter
 * Copyright 1994-1997 Patrick Powell, San Diego, CA <papowell@sdsu.edu>
 *
 * Based on the CTI printer filters.
 *  See COPYRIGHT for details.
 *
 * $Id: fexit.c,v 2.1 1997/01/05 18:41:39 papowell Exp $
 */

#include "portable.h"
extern int monitpid;

void fexit(i)
int i;
{
	/* log(4,"Exit value = %d", i); */
	if ( monitpid > 0 )	{
		/* log(3,"Father murders %d", monitpid); */
		kill(monitpid,SIGTERM);
		kill(monitpid,SIGCONT);
	}
	exit(i);
}