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
|
/****************************************************************
* *
* Copyright (c) 2001-2015 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 "gtm_stdlib.h"
#include "iosp.h"
#include "error.h"
#include "mupip_exit.h"
#include "gtmmsg.h"
GBLREF boolean_t mupip_exit_status_displayed;
void mupip_exit(int4 stat)
{
int4 tmp_severity;
if (stat != SS_NORMAL)
{
if (error_condition != stat) /* If message not already put out.. */
{
gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(1) stat);
tmp_severity = SEVMASK(stat);
} else
tmp_severity = severity;
/* Make sure give an rc when we exit */
if (SUCCESS != tmp_severity && INFO != tmp_severity)
stat = (((stat & UNIX_EXIT_STATUS_MASK) != 0) ? stat : -1);
else
stat = 0;
}
mupip_exit_status_displayed = TRUE;
EXIT(stat);
}
|