2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2024-07-19 11:43:27 -04:00
|
|
|
* Copyright 2001, 2012 Fidelity Information Services, Inc *
|
2012-02-05 11:35:58 -05:00
|
|
|
* *
|
|
|
|
* 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 <errno.h>
|
|
|
|
|
|
|
|
#include "gtm_unistd.h"
|
|
|
|
#include "gtm_fcntl.h"
|
|
|
|
#include "gtm_inet.h"
|
|
|
|
|
|
|
|
#ifdef UNIX
|
|
|
|
#include "gtm_ipc.h"
|
|
|
|
#include <sys/sem.h>
|
|
|
|
#elif defined(VMS)
|
|
|
|
#include <ssdef.h>
|
|
|
|
#include <descrip.h> /* Required for gtmrecv.h */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gdsroot.h"
|
|
|
|
#include "gdsblk.h"
|
|
|
|
#include "gtm_facility.h"
|
|
|
|
#include "fileinfo.h"
|
|
|
|
#include "gdsbt.h"
|
|
|
|
#include "gdsfhead.h"
|
|
|
|
#include "filestruct.h"
|
|
|
|
#include "iosp.h"
|
|
|
|
#include "repl_shutdcode.h"
|
|
|
|
#include "repl_msg.h"
|
|
|
|
#include "gtmsource.h"
|
|
|
|
#include "error.h"
|
|
|
|
#include "dpgbldir.h"
|
|
|
|
|
|
|
|
#ifdef UNIX
|
|
|
|
#include "ftok_sems.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
GBLREF gd_addr *gd_header;
|
|
|
|
GBLREF jnlpool_addrs jnlpool;
|
|
|
|
|
2012-03-24 14:06:46 -04:00
|
|
|
error_def(ERR_ASSERT);
|
|
|
|
error_def(ERR_CTRLC);
|
|
|
|
error_def(ERR_FORCEDHALT);
|
|
|
|
error_def(ERR_GTMASSERT);
|
|
|
|
error_def(ERR_GTMASSERT2);
|
|
|
|
error_def(ERR_GTMCHECK);
|
|
|
|
error_def(ERR_OUTOFSPACE);
|
|
|
|
error_def(ERR_STACKOFLOW);
|
|
|
|
error_def(ERR_MEMORY);
|
|
|
|
error_def(ERR_VMSMEMORY);
|
|
|
|
|
2012-02-05 11:35:58 -05:00
|
|
|
CONDITION_HANDLER(gtmsource_ch)
|
|
|
|
{
|
|
|
|
gd_addr *addr_ptr;
|
|
|
|
gd_region *reg_local, *reg_top;
|
|
|
|
sgmnt_addrs *csa;
|
|
|
|
|
|
|
|
START_CH;
|
|
|
|
if (!(IS_GTM_ERROR(SIGNAL)) || DUMPABLE || SEVERITY == ERROR)
|
|
|
|
{
|
|
|
|
for (addr_ptr = get_next_gdr(NULL); addr_ptr; addr_ptr = get_next_gdr(addr_ptr))
|
|
|
|
{
|
|
|
|
for (reg_local = addr_ptr->regions, reg_top = reg_local + addr_ptr->n_regions;
|
|
|
|
reg_local < reg_top; reg_local++)
|
|
|
|
{
|
|
|
|
if (reg_local->open && !reg_local->was_open)
|
|
|
|
{
|
|
|
|
csa = (sgmnt_addrs *)&FILE_INFO(reg_local)->s_addrs;
|
|
|
|
if (csa && (csa->now_crit))
|
|
|
|
rel_crit(reg_local);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (jnlpool.jnlpool_ctl)
|
|
|
|
{
|
|
|
|
csa = (sgmnt_addrs *)&FILE_INFO(jnlpool.jnlpool_dummy_reg)->s_addrs;
|
|
|
|
if (csa && csa->now_crit)
|
|
|
|
rel_lock(jnlpool.jnlpool_dummy_reg);
|
|
|
|
}
|
|
|
|
NEXTCH;
|
|
|
|
}
|
|
|
|
/* warning, info, or success */
|
|
|
|
CONTINUE;
|
|
|
|
}
|