fis-gtm/sr_port/bml_recycled.c

33 lines
848 B
C

/****************************************************************
* *
* Copyright 2007 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 "gdsroot.h"
#include "gdsbt.h"
#include "gdsblk.h"
#include "gdsbml.h"
/* Include prototypes */
#include "bit_set.h"
GBLREF boolean_t dse_running;
uint4 bml_recycled(uint4 setfree, sm_uc_ptr_t map)
{
uint4 ret, ret1;
setfree *= BML_BITS_PER_BLK;
ret = bit_set(setfree, map);
ret1 = bit_set(setfree + 1, map);
assert((!ret && !ret1) || dse_running);
return ret;
}