File: std_dev_outbndset.c

package info (click to toggle)
fis-gtm 6.3-014-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 36,680 kB
  • sloc: ansic: 333,039; asm: 5,180; csh: 4,956; sh: 1,924; awk: 291; makefile: 66; sed: 13
file content (56 lines) | stat: -rwxr-xr-x 1,937 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
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
50
51
52
53
54
55
56
/****************************************************************
 *								*
 * Copyright (c) 2001-2019 Fidelity National Information	*
 * Services, Inc. and/or its subsidiaries. All rights reserved.	*
 *								*
 *	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 "io.h"
#include "iottdef.h"
#include "outofband.h"
#include "deferred_events.h"
#include "std_dev_outbndset.h"

#define SHFT_MSK 0x00000001

GBLREF boolean_t		ctrlc_on, hup_on;
GBLREF volatile io_pair	io_std_device;
GBLREF volatile bool		std_dev_outbnd;

/* NOTE: xfer_set_handlers() returns success or failure for attempts to set
 *       xfer_table. That value is not currently used here, hence the
 *       cast to void.
 */

void std_dev_outbndset(int4 ob_char)
{
	uint4		mask;
	unsigned short	n;
	d_tt_struct	*tt_ptr;

	assertpro(MAXOUTOFBAND >= ob_char);
	if ((NULL != io_std_device.in) && (tt == io_std_device.in->type))
	{	/* The NULL check above protects against a <CTRL-C> hitting while we're initializing the terminal */
		tt_ptr = (d_tt_struct *)io_std_device.in->dev_sp;
		std_dev_outbnd = TRUE;
		mask = SHFT_MSK << ob_char;
		if (mask & tt_ptr->enbld_outofbands.mask)
			(void)xfer_set_handlers(outofband_event, &ctrap_set, ob_char, FALSE);
		else if (CTRLC_MSK & mask)
		{
			if (ctrlc_on)
		        	(void)xfer_set_handlers(outofband_event, &ctrlc_set, 0, FALSE);
		} else if (mask & CTRLY_MSK)
	        	(void)xfer_set_handlers(outofband_event, &ctrly_set, 0, FALSE);
		else if (hup_on && (SIGHUP_MSK & mask))
			(void)xfer_set_handlers(outofband_event, &ctrap_set, ob_char, FALSE);
		else
			assertpro((mask & tt_ptr->enbld_outofbands.mask) || (OUTOFBAND_MSK & mask));
	}
}