1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
/****************************************************************
* *
* Copyright 2012 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. *
* *
****************************************************************/
#ifndef _GTMSOURCE_SRV_LATCH
#define _GTMSOURCE_SRV_LATCH
boolean_t grab_gtmsource_srv_latch(sm_global_latch_ptr_t latch, uint4 max_timeout_in_secs, uint4 onln_rlbk_action);
boolean_t rel_gtmsource_srv_latch(sm_global_latch_ptr_t latch);
boolean_t gtmsource_srv_latch_held_by_us(void);
#endif
|