fis-gtm/sr_unix/gtm_asm_establish.c

25 lines
916 B
C

/****************************************************************
* *
* Copyright 2012, 2013 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 "error.h" /* Declares all needed globals */
void gtm_asm_establish(void); /* Only needs to be declared here as is only called from assembler routines */
/* This routine is called from assembler routines (basically dm_start) who need to do an ESTABLISH. We do all of the ESTABLISH
* here except for the actual setjmp() call which needs to be in the assembler macro itself.
*/
void gtm_asm_establish(void)
{
GTM_ASM_ESTABLISH;
}