2012-03-24 14:06:46 -04:00
|
|
|
/***************************************************************
|
2012-02-05 11:35:58 -05:00
|
|
|
* *
|
2024-07-19 11:43:27 -04:00
|
|
|
* Copyright 2001, 2013 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. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
/* mupip_reorg.c:
|
|
|
|
* Main program for mupip reorg (portable) .
|
|
|
|
*
|
|
|
|
* This program creates a list of globals to be organized from /SELECT option and then calls mu_reorg() to
|
|
|
|
* reorganize each global seperately but excludes some variables' organization given in /EXCLUDE list.
|
|
|
|
*
|
|
|
|
* This alternatively invokes mu_reorg_upgrd_dwngrd in case a MUPIP REORG -UPGRADE or -DOWNGRADE was specified
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "mdef.h"
|
|
|
|
|
|
|
|
#include "gtm_string.h"
|
|
|
|
|
|
|
|
#include "stp_parms.h"
|
|
|
|
#include "gdsroot.h"
|
|
|
|
#include "gdsblk.h"
|
|
|
|
#include "gtm_facility.h"
|
|
|
|
#include "fileinfo.h"
|
|
|
|
#include "gdsbt.h"
|
|
|
|
#include "gdsfhead.h"
|
|
|
|
#include "gdskill.h"
|
|
|
|
#ifdef VMS
|
|
|
|
#include <rms.h> /* needed for muextr.h */
|
|
|
|
#endif
|
|
|
|
#include "muextr.h"
|
|
|
|
#include "iosp.h"
|
|
|
|
#include "cli.h"
|
|
|
|
#include "mu_reorg.h"
|
|
|
|
#include "util.h"
|
2012-03-24 14:06:46 -04:00
|
|
|
#ifdef GTM_TRUNCATE
|
|
|
|
#include "mu_truncate.h"
|
|
|
|
#include "op.h"
|
|
|
|
#include "tp_change_reg.h"
|
|
|
|
#include "is_proc_alive.h"
|
|
|
|
#endif
|
|
|
|
#include "filestruct.h"
|
|
|
|
#include "error.h"
|
|
|
|
#include "gdscc.h"
|
|
|
|
#include "jnl.h"
|
|
|
|
#include "buddy_list.h" /* needed for tp.h */
|
|
|
|
#include "hashtab_int4.h" /* needed for tp.h */
|
|
|
|
#include "tp.h"
|
2012-02-05 11:35:58 -05:00
|
|
|
|
|
|
|
/* Prototypes */
|
|
|
|
#include "mupip_reorg.h"
|
|
|
|
#include "mu_reorg_upgrd_dwngrd.h"
|
|
|
|
#include "targ_alloc.h"
|
|
|
|
#include "mupip_exit.h"
|
|
|
|
#include "gv_select.h"
|
|
|
|
#include "mu_outofband_setup.h"
|
|
|
|
#include "gtmmsg.h"
|
2012-03-24 14:06:46 -04:00
|
|
|
#include "mu_getlst.h"
|
|
|
|
|
|
|
|
error_def(ERR_CONCURTRUNCINPROG);
|
|
|
|
error_def(ERR_DBRDONLY);
|
|
|
|
error_def(ERR_EXCLUDEREORG);
|
|
|
|
error_def(ERR_MUNOACTION);
|
|
|
|
error_def(ERR_MUNOFINISH);
|
|
|
|
error_def(ERR_MUPCLIERR);
|
|
|
|
error_def(ERR_MUTRUNCFAIL);
|
|
|
|
error_def(ERR_MUTRUNCPERCENT);
|
|
|
|
error_def(ERR_MUTRUNC1ATIME);
|
|
|
|
error_def(ERR_NOSELECT);
|
|
|
|
error_def(ERR_NOEXCLUDE);
|
|
|
|
error_def(ERR_REORGCTRLY);
|
|
|
|
error_def(ERR_REORGINC);
|
2012-02-05 11:35:58 -05:00
|
|
|
|
2024-07-19 11:43:27 -04:00
|
|
|
GTMTRIG_ONLY(LITREF mval literal_hasht;)
|
|
|
|
|
2012-02-05 11:35:58 -05:00
|
|
|
GBLREF bool mu_ctrlc_occurred;
|
|
|
|
GBLREF bool mu_ctrly_occurred;
|
|
|
|
GBLREF boolean_t mu_reorg_process;
|
2012-03-24 14:06:46 -04:00
|
|
|
GBLREF gd_addr *gd_header;
|
2012-02-05 11:35:58 -05:00
|
|
|
GBLREF gd_region *gv_cur_region;
|
2024-07-19 11:43:27 -04:00
|
|
|
GBLREF gv_key *gv_currkey_next_reorg, *gv_currkey, *gv_altkey;
|
|
|
|
GBLREF int gv_keysize;
|
2012-02-05 11:35:58 -05:00
|
|
|
GBLREF gv_namehead *reorg_gv_target;
|
|
|
|
GBLREF sgmnt_data_ptr_t cs_data;
|
|
|
|
GBLREF sgmnt_addrs *cs_addrs;
|
2012-03-24 14:06:46 -04:00
|
|
|
GBLREF uint4 process_id;
|
|
|
|
GBLREF tp_region *grlist;
|
|
|
|
GBLREF bool error_mupip;
|
2024-07-19 11:43:27 -04:00
|
|
|
#ifdef UNIX
|
|
|
|
GBLREF boolean_t jnlpool_init_needed;
|
|
|
|
#endif
|
2012-02-05 11:35:58 -05:00
|
|
|
void mupip_reorg(void)
|
|
|
|
{
|
|
|
|
boolean_t resume, reorg_success = TRUE;
|
|
|
|
int data_fill_factor, index_fill_factor;
|
|
|
|
int reorg_op, reg_max_rec, reg_max_key, reg_max_blk;
|
|
|
|
char cli_buff[MAX_LINE], *ptr;
|
|
|
|
glist gl_head, exclude_gl_head, *gl_ptr;
|
|
|
|
uint4 cli_status;
|
|
|
|
unsigned short n_len;
|
2012-03-24 14:06:46 -04:00
|
|
|
boolean_t truncate, cur_success, restrict_reg, arg_present;
|
2024-07-19 11:43:27 -04:00
|
|
|
int root_swap_statistic;
|
|
|
|
mval gn;
|
2012-03-24 14:06:46 -04:00
|
|
|
# ifdef GTM_TRUNCATE
|
|
|
|
int4 truncate_percent;
|
|
|
|
boolean_t gotlock;
|
|
|
|
sgmnt_data_ptr_t csd;
|
|
|
|
sgmnt_addrs *csa;
|
|
|
|
node_local_ptr_t cnl;
|
|
|
|
trunc_region *reg_list, *tmp_reg, *reg_iter, *prev_reg;
|
|
|
|
uint4 fs;
|
2024-07-19 11:43:27 -04:00
|
|
|
uint4 lcl_pid;
|
2012-03-24 14:06:46 -04:00
|
|
|
# endif
|
|
|
|
DCL_THREADGBL_ACCESS;
|
2012-02-05 11:35:58 -05:00
|
|
|
|
2012-03-24 14:06:46 -04:00
|
|
|
SETUP_THREADGBL_ACCESS;
|
2024-07-19 11:43:27 -04:00
|
|
|
UNIX_ONLY(jnlpool_init_needed = TRUE);
|
2012-02-05 11:35:58 -05:00
|
|
|
mu_outofband_setup();
|
2012-03-24 14:06:46 -04:00
|
|
|
truncate = FALSE;
|
|
|
|
GTM_TRUNCATE_ONLY(
|
|
|
|
reg_list = NULL;
|
|
|
|
if (CLI_PRESENT == cli_present("TRUNCATE"))
|
|
|
|
truncate = TRUE;
|
|
|
|
)
|
2012-02-05 11:35:58 -05:00
|
|
|
|
|
|
|
if ((CLI_PRESENT == cli_present("UPGRADE")) || (CLI_PRESENT == cli_present("DOWNGRADE")))
|
|
|
|
{
|
|
|
|
/* note that "mu_reorg_process" is not set to TRUE in case of MUPIP REORG UPGRADE/DOWNGRADE.
|
|
|
|
* this is intentional because we are not doing any REORG kind of processing.
|
|
|
|
*/
|
|
|
|
mu_reorg_upgrd_dwngrd();
|
|
|
|
mupip_exit(SS_NORMAL); /* does not return */
|
|
|
|
}
|
2012-03-24 14:06:46 -04:00
|
|
|
grlist = NULL;
|
|
|
|
restrict_reg = FALSE;
|
|
|
|
arg_present = (0 != TREF(parms_cnt));
|
|
|
|
VMS_ONLY(arg_present = (CLI_PRESENT == cli_present("REG_NAME")));
|
|
|
|
if (CLI_PRESENT == cli_present("REGION"))
|
|
|
|
{ /* MUPIP REORG -REGION reg-list restricts mu_reorg to variables in specified regions */
|
|
|
|
error_mupip = FALSE;
|
|
|
|
restrict_reg = TRUE;
|
|
|
|
gvinit(); /* initialize gd_header (needed by the following call to mu_getlst) */
|
|
|
|
mu_getlst("REG_NAME", SIZEOF(tp_region)); /* get the parameter corresponding to REGION qualifier */
|
|
|
|
if (error_mupip)
|
|
|
|
{
|
|
|
|
util_out_print("!/MUPIP REORG cannot proceed with above errors!/", FLUSH);
|
|
|
|
mupip_exit(ERR_MUNOACTION);
|
|
|
|
}
|
|
|
|
} else if (arg_present)
|
|
|
|
{
|
|
|
|
util_out_print("MUPIP REORG only accepts a parameter when -REGION is specified.", FLUSH);
|
|
|
|
mupip_exit(ERR_MUPCLIERR);
|
|
|
|
}
|
2012-02-05 11:35:58 -05:00
|
|
|
|
|
|
|
resume = (CLI_PRESENT == cli_present("RESUME"));
|
|
|
|
reorg_op = DEFAULT;
|
|
|
|
n_len = SIZEOF(cli_buff);
|
|
|
|
memset(cli_buff, 0, n_len);
|
|
|
|
if (CLI_PRESENT == cli_present("USER_DEFINED_REORG") && (CLI_GET_STR_ALL("USER_DEFINED_REORG", cli_buff, &n_len)))
|
|
|
|
{
|
|
|
|
for (ptr = cli_buff; ; )
|
|
|
|
{
|
|
|
|
if (0 == STRNCMP_LIT(ptr, "SWAPHIST"))
|
|
|
|
reorg_op |= SWAPHIST;
|
|
|
|
else if (0 == STRNCMP_LIT(ptr, "NOCOALESCE"))
|
|
|
|
reorg_op |= NOCOALESCE;
|
|
|
|
else if (0 == STRNCMP_LIT(ptr, "NOSPLIT"))
|
|
|
|
reorg_op |= NOSPLIT;
|
|
|
|
else if (0 == STRNCMP_LIT(ptr, "NOSWAP"))
|
|
|
|
reorg_op |= NOSWAP;
|
|
|
|
else if (0 == STRNCMP_LIT(ptr, "DETAIL"))
|
|
|
|
reorg_op |= DETAIL;
|
|
|
|
ptr = (char *)strchr(ptr, ',');
|
|
|
|
if (ptr)
|
|
|
|
ptr++;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((cli_status = cli_present("FILL_FACTOR")) == CLI_PRESENT)
|
|
|
|
{
|
|
|
|
assert(SIZEOF(data_fill_factor) == SIZEOF(int4));
|
|
|
|
if (!cli_get_int("FILL_FACTOR", (int4 *)&data_fill_factor) || MAX_FILLFACTOR < data_fill_factor)
|
|
|
|
data_fill_factor = MAX_FILLFACTOR;
|
|
|
|
else if (MIN_FILLFACTOR > data_fill_factor)
|
|
|
|
data_fill_factor = MIN_FILLFACTOR;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
data_fill_factor = MAX_FILLFACTOR;
|
|
|
|
if ((cli_status = cli_present("INDEX_FILL_FACTOR")) == CLI_PRESENT)
|
|
|
|
{
|
|
|
|
assert(SIZEOF(index_fill_factor) == SIZEOF(int4));
|
|
|
|
if (!cli_get_int("INDEX_FILL_FACTOR", (int4 *)&index_fill_factor))
|
|
|
|
index_fill_factor = data_fill_factor;
|
|
|
|
else if (MIN_FILLFACTOR > index_fill_factor)
|
|
|
|
index_fill_factor = MIN_FILLFACTOR;
|
|
|
|
else if (MAX_FILLFACTOR < index_fill_factor)
|
|
|
|
index_fill_factor = MAX_FILLFACTOR;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
index_fill_factor = data_fill_factor;
|
|
|
|
util_out_print("Fill Factor:: Index blocks !UL%: Data blocks !UL%", FLUSH, index_fill_factor, data_fill_factor);
|
2012-03-24 14:06:46 -04:00
|
|
|
|
2012-02-05 11:35:58 -05:00
|
|
|
n_len = SIZEOF(cli_buff);
|
|
|
|
memset(cli_buff, 0, n_len);
|
|
|
|
if (CLI_PRESENT != cli_present("EXCLUDE"))
|
|
|
|
exclude_gl_head.next = NULL;
|
|
|
|
else if (FALSE == CLI_GET_STR_ALL("EXCLUDE", cli_buff, &n_len))
|
|
|
|
exclude_gl_head.next = NULL;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* gv_select will select globals for this clause */
|
2012-03-24 14:06:46 -04:00
|
|
|
gv_select(cli_buff, n_len, FALSE, "EXCLUDE", &exclude_gl_head, ®_max_rec, ®_max_key, ®_max_blk, FALSE);
|
2012-02-05 11:35:58 -05:00
|
|
|
if (!exclude_gl_head.next)
|
2024-07-19 11:43:27 -04:00
|
|
|
gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_NOEXCLUDE);
|
2012-02-05 11:35:58 -05:00
|
|
|
}
|
|
|
|
n_len = SIZEOF(cli_buff);
|
|
|
|
memset(cli_buff, 0, n_len);
|
|
|
|
if (CLI_PRESENT != cli_present("SELECT"))
|
|
|
|
{
|
|
|
|
n_len = 1;
|
|
|
|
cli_buff[0] = '*';
|
|
|
|
}
|
|
|
|
else if (FALSE == CLI_GET_STR_ALL("SELECT", cli_buff, &n_len))
|
|
|
|
{
|
|
|
|
n_len = 1;
|
|
|
|
cli_buff[0] = '*';
|
|
|
|
}
|
|
|
|
/* gv_select will select globals for this clause */
|
2012-03-24 14:06:46 -04:00
|
|
|
TREF(want_empty_gvts) = TRUE; /* Allow killed globals to be selected and processed by mu_reorg */
|
|
|
|
gv_select(cli_buff, n_len, FALSE, "SELECT", &gl_head, ®_max_rec, ®_max_key, ®_max_blk, restrict_reg);
|
2012-02-05 11:35:58 -05:00
|
|
|
if (!gl_head.next)
|
|
|
|
{
|
2024-07-19 11:43:27 -04:00
|
|
|
rts_error_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_NOSELECT);
|
2012-02-05 11:35:58 -05:00
|
|
|
mupip_exit(ERR_NOSELECT);
|
|
|
|
}
|
2012-03-24 14:06:46 -04:00
|
|
|
TREF(want_empty_gvts) = FALSE;
|
2012-02-05 11:35:58 -05:00
|
|
|
|
2024-07-19 11:43:27 -04:00
|
|
|
root_swap_statistic = 0;
|
2012-02-05 11:35:58 -05:00
|
|
|
mu_reorg_process = TRUE;
|
|
|
|
assert(NULL == gv_currkey_next_reorg);
|
2024-07-19 11:43:27 -04:00
|
|
|
gv_keysize = DBKEYSIZE(MAX_KEY_SZ);
|
|
|
|
GVKEY_INIT(gv_currkey_next_reorg, gv_keysize);
|
|
|
|
GVKEY_INIT(gv_currkey, gv_keysize);
|
|
|
|
GVKEY_INIT(gv_altkey, gv_keysize);
|
2012-02-05 11:35:58 -05:00
|
|
|
reorg_gv_target = targ_alloc(MAX_KEY_SZ, NULL, NULL);
|
2024-07-19 11:43:27 -04:00
|
|
|
reorg_gv_target->hist.depth = 0;
|
|
|
|
reorg_gv_target->alt_hist->depth = 0;
|
2012-02-05 11:35:58 -05:00
|
|
|
for (gl_ptr = gl_head.next; gl_ptr; gl_ptr = gl_ptr->next)
|
|
|
|
{
|
|
|
|
util_out_print(" ", FLUSH);
|
|
|
|
util_out_print("Global: !AD ", FLUSH, gl_ptr->name.str.len, gl_ptr->name.str.addr);
|
|
|
|
if (in_exclude_list((uchar_ptr_t)gl_ptr->name.str.addr, gl_ptr->name.str.len, &exclude_gl_head))
|
|
|
|
{
|
2024-07-19 11:43:27 -04:00
|
|
|
gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(4) ERR_EXCLUDEREORG, 2, gl_ptr->name.str.len, gl_ptr->name.str.addr);
|
2012-02-05 11:35:58 -05:00
|
|
|
reorg_success = FALSE;
|
|
|
|
continue;
|
|
|
|
}
|
2024-07-19 11:43:27 -04:00
|
|
|
/* Save the global name in reorg_gv_target. Via gv_currkey_next_reorg, it's possible for gv_currkey to become
|
|
|
|
* out of sync with gv_target. We'll use reorg_gv_target->gvname to make sure the correct root block is found.
|
|
|
|
*/
|
|
|
|
reorg_gv_target->gvname.var_name.addr = gl_ptr->name.str.addr;
|
|
|
|
reorg_gv_target->gvname.var_name.len = gl_ptr->name.str.len;
|
2012-03-24 14:06:46 -04:00
|
|
|
cur_success = mu_reorg(&gl_ptr->name, &exclude_gl_head, &resume, index_fill_factor, data_fill_factor, reorg_op);
|
|
|
|
reorg_success &= cur_success;
|
2024-07-19 11:43:27 -04:00
|
|
|
SET_GV_CURRKEY_FROM_REORG_GV_TARGET;
|
2012-03-24 14:06:46 -04:00
|
|
|
# ifdef GTM_TRUNCATE
|
2024-07-19 11:43:27 -04:00
|
|
|
if (truncate)
|
|
|
|
{ /* No need to move root blocks unless truncating */
|
|
|
|
cur_success &= mu_swap_root(&gl_ptr->name, &root_swap_statistic);
|
|
|
|
if (cur_success)
|
|
|
|
{ /* add region corresponding to this global to the set (list) of regions to truncate */
|
|
|
|
for (reg_iter = reg_list, prev_reg = reg_list; reg_iter; reg_iter = reg_iter->next)
|
|
|
|
if (reg_iter->reg == gv_cur_region)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
prev_reg = reg_iter;
|
|
|
|
if (NULL == reg_iter)
|
|
|
|
{
|
|
|
|
tmp_reg = (trunc_region *)malloc(SIZEOF(trunc_region));
|
|
|
|
tmp_reg->reg = gv_cur_region;
|
|
|
|
tmp_reg->next = NULL;
|
|
|
|
if (NULL == reg_list)
|
|
|
|
reg_list = tmp_reg;
|
|
|
|
else
|
|
|
|
prev_reg->next = tmp_reg;
|
|
|
|
# ifdef GTM_TRIGGER
|
|
|
|
if (truncate)
|
|
|
|
{ /* Reorg ^#t in this region to move it out of the way. */
|
|
|
|
gn = literal_hasht;
|
|
|
|
reorg_gv_target->gvname.var_name.addr = gn.str.addr;
|
|
|
|
reorg_gv_target->gvname.var_name.len = gn.str.len;
|
|
|
|
cur_success = mu_reorg(&gn, &exclude_gl_head, &resume, index_fill_factor,
|
|
|
|
data_fill_factor, reorg_op);
|
|
|
|
reorg_success &= cur_success;
|
|
|
|
SET_GV_CURRKEY_FROM_REORG_GV_TARGET;
|
|
|
|
reorg_success &= mu_swap_root(&gn, &root_swap_statistic);
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
}
|
2012-03-24 14:06:46 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif
|
2012-02-05 11:35:58 -05:00
|
|
|
if (mu_ctrlc_occurred || mu_ctrly_occurred)
|
|
|
|
{
|
2024-07-19 11:43:27 -04:00
|
|
|
gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_REORGCTRLY);
|
2012-02-05 11:35:58 -05:00
|
|
|
mupip_exit(ERR_MUNOFINISH);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!reorg_success)
|
|
|
|
{
|
2024-07-19 11:43:27 -04:00
|
|
|
rts_error_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_REORGINC);
|
2012-02-05 11:35:58 -05:00
|
|
|
mupip_exit(ERR_REORGINC);
|
|
|
|
}
|
2012-03-24 14:06:46 -04:00
|
|
|
else if (truncate)
|
|
|
|
{
|
|
|
|
# ifdef GTM_TRUNCATE
|
2024-07-19 11:43:27 -04:00
|
|
|
util_out_print("Total root blocks moved: !UL", FLUSH, root_swap_statistic);
|
2012-03-24 14:06:46 -04:00
|
|
|
mu_reorg_process = FALSE;
|
|
|
|
/* Default threshold is 0 i.e. we attempt to truncate no matter what free_blocks is. */
|
|
|
|
truncate_percent = 0;
|
|
|
|
cli_get_int("TRUNCATE", (int4 *)&truncate_percent);
|
|
|
|
if (99 < truncate_percent)
|
|
|
|
{
|
2024-07-19 11:43:27 -04:00
|
|
|
gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_MUTRUNCPERCENT);
|
2012-03-24 14:06:46 -04:00
|
|
|
mupip_exit(ERR_MUTRUNCFAIL);
|
|
|
|
}
|
|
|
|
for (reg_iter = reg_list; reg_iter; reg_iter = reg_iter->next)
|
|
|
|
{
|
|
|
|
gv_cur_region = reg_iter->reg;
|
|
|
|
tp_change_reg();
|
|
|
|
csd = cs_data;
|
|
|
|
csa = cs_addrs;
|
|
|
|
cnl = csa->nl;
|
|
|
|
/* Ensure only one truncate process at a time operates on given region */
|
|
|
|
grab_crit(gv_cur_region);
|
2024-07-19 11:43:27 -04:00
|
|
|
lcl_pid = cnl->trunc_pid;
|
|
|
|
if (lcl_pid && is_proc_alive(lcl_pid, 0))
|
2012-03-24 14:06:46 -04:00
|
|
|
{
|
|
|
|
rel_crit(gv_cur_region);
|
2024-07-19 11:43:27 -04:00
|
|
|
send_msg_csa(CSA_ARG(REG2CSA(gv_cur_region)) VARLSTCNT(4) ERR_MUTRUNC1ATIME, 3, lcl_pid,
|
|
|
|
REG_LEN_STR(gv_cur_region));
|
2012-03-24 14:06:46 -04:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
cnl->trunc_pid = process_id;
|
|
|
|
cnl->highest_lbm_with_busy_blk = 0;
|
|
|
|
rel_crit(gv_cur_region);
|
|
|
|
if (!mu_truncate(truncate_percent))
|
|
|
|
mupip_exit(ERR_MUTRUNCFAIL);
|
|
|
|
grab_crit(gv_cur_region);
|
|
|
|
assert(cnl->trunc_pid == process_id);
|
|
|
|
cnl->trunc_pid = 0;
|
|
|
|
rel_crit(gv_cur_region);
|
|
|
|
if (mu_ctrlc_occurred || mu_ctrly_occurred)
|
|
|
|
{
|
2024-07-19 11:43:27 -04:00
|
|
|
gtm_putmsg_csa(CSA_ARG(NULL) VARLSTCNT(1) ERR_REORGCTRLY);
|
2012-03-24 14:06:46 -04:00
|
|
|
mupip_exit(ERR_MUNOFINISH);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
mupip_exit(SS_NORMAL);
|
|
|
|
}
|
2012-02-05 11:35:58 -05:00
|
|
|
else
|
|
|
|
mupip_exit(SS_NORMAL);
|
|
|
|
}
|
|
|
|
|