fis-gtm/sr_unix/ctrly_set.c

48 lines
1.5 KiB
C

/****************************************************************
* *
* Copyright 2001, 2010 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 "xfer_enum.h"
#include "outofband.h"
#include "op.h"
#include "deferred_events.h"
#include "fix_xfer_entry.h"
#include "gtmimagename.h"
/* ------------------------------------------------------------------
* Set flags and transfer table for synchronous handling of cntl-Y.
* Should be called only from set_xfer_handlers.
*
* Note: dummy parameter is for calling compatibility.
* ------------------------------------------------------------------
*/
GBLREF xfer_entry_t xfer_table[];
GBLREF volatile int4 outofband,ctrap_action_is;
void ctrly_set(int4 dummy_param)
{
if (!IS_MCODE_RUNNING)
{ outofband = ctrly;
outofband_clear();
} else
{
ctrap_action_is = 0;
outofband = ctrly;
FIX_XFER_ENTRY(xf_linefetch, op_fetchintrrpt);
FIX_XFER_ENTRY(xf_linestart, op_startintrrpt);
FIX_XFER_ENTRY(xf_zbfetch, op_fetchintrrpt);
FIX_XFER_ENTRY(xf_zbstart, op_startintrrpt);
FIX_XFER_ENTRY(xf_forchk1, op_startintrrpt);
FIX_XFER_ENTRY(xf_forloop, op_forintrrpt);
}
}