1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
/****************************************************************
* *
* Copyright 2001, 2012 Fidelity Information Services, Inc *
* *
* This source code contains the intellectual property *
* of its copyright holder(s), and is made available *
* under a license. If you do not know the terms of *
* the license, please stop and do not read further. *
* *
****************************************************************/
#include "mdef.h"
#include <signal.h>
#include <errno.h>
#include "gtm_unistd.h"
#include "gtmsiginfo.h"
#include "io.h"
#include "send_msg.h"
#include "setterm.h"
GBLREF volatile int suspend_status;
GBLREF io_pair io_std_device;
GBLREF uint4 process_id;
GBLREF uint4 sig_count;
error_def(ERR_SUSPENDING);
error_def(ERR_TEXT);
void suspend(int sig)
{
int status;
send_msg(VARLSTCNT(3) ERR_SUSPENDING, 1, sig);
suspend_status = NOW_SUSPEND;
/* Dont call flush_pio() if the received signal is SIGTTOU OR if the received signal is SIGTTIN
* and the $P.out is terminal. Arrival of SIGTTIN and SIGTTOU indicates that current process is
* in the background. Hence it does not make sense to do flush_pio() $P.out is terminal.
*/
if (!(sig == SIGTTOU || ((tt == io_std_device.out->type) && (sig == SIGTTIN))))
flush_pio();
if (NULL != io_std_device.in && tt == io_std_device.in->type)
resetterm(io_std_device.in);
sig_count = 0;
status = kill(process_id, SIGSTOP);
assert(0 == status);
return;
}
|