2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2024-07-19 11:43:27 -04:00
|
|
|
* Copyright 2001, 2012 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. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include "mdef.h"
|
|
|
|
#include "sleep_cnt.h"
|
|
|
|
|
2024-07-19 11:43:27 -04:00
|
|
|
#ifdef VMS
|
|
|
|
# include <lib$routines.h>
|
|
|
|
#endif
|
|
|
|
#include "gtm_stdlib.h"
|
2012-02-05 11:35:58 -05:00
|
|
|
#include "gt_timer.h"
|
|
|
|
#ifdef UNIX
|
2024-07-19 11:43:27 -04:00
|
|
|
# include "random.h"
|
2012-02-05 11:35:58 -05:00
|
|
|
#endif
|
|
|
|
#include "wcs_backoff.h"
|
|
|
|
|
|
|
|
GBLREF int4 process_id;
|
|
|
|
|
|
|
|
void wcs_backoff(unsigned int sleepfactor)
|
|
|
|
{
|
|
|
|
/* wcs_backoff provides a layer over hiber_start that produces a [pseudo] random sleep varying
|
|
|
|
* to a maximum sleep time it is intended to be used in as part of a contention backoff
|
|
|
|
* where the argument is the attempt count. If the counter starts at 0, the invocation would
|
|
|
|
* typically be:
|
|
|
|
* if (count) wcs_backoff(count);
|
|
|
|
*/
|
|
|
|
|
2024-07-19 11:43:27 -04:00
|
|
|
# if defined(VMS)
|
|
|
|
int4 day;
|
|
|
|
double randfloat;
|
|
|
|
# endif
|
2012-02-05 11:35:58 -05:00
|
|
|
static int4 seed = 0;
|
|
|
|
uint4 sleep_ms;
|
|
|
|
|
|
|
|
assert(sleepfactor);
|
|
|
|
if (0 == sleepfactor)
|
|
|
|
return;
|
|
|
|
if (sleepfactor > MAXSLPTIME)
|
|
|
|
sleepfactor = MAXSLPTIME;
|
2024-07-19 11:43:27 -04:00
|
|
|
# ifdef UNIX
|
|
|
|
if (0 == seed)
|
2012-02-05 11:35:58 -05:00
|
|
|
{
|
|
|
|
init_rand_table();
|
|
|
|
seed = 1;
|
|
|
|
}
|
|
|
|
sleep_ms = ((uint4)(get_rand_from_table() % sleepfactor));
|
2024-07-19 11:43:27 -04:00
|
|
|
# elif defined(VMS)
|
|
|
|
if (0 == seed) /* Seed random number generator */
|
|
|
|
{
|
2012-02-05 11:35:58 -05:00
|
|
|
lib$day(&day, 0, &seed);
|
2024-07-19 11:43:27 -04:00
|
|
|
seed *= process_id;
|
|
|
|
srandom(seed);
|
|
|
|
}
|
|
|
|
randfloat = ((double)random()) / RAND_MAX;
|
|
|
|
sleep_ms = ((uint4)(sleepfactor * randfloat));
|
|
|
|
# else
|
|
|
|
# error "Unsupported platform"
|
|
|
|
# endif
|
2012-02-05 11:35:58 -05:00
|
|
|
if (0 == sleep_ms)
|
|
|
|
return; /* We have no wait this time */
|
|
|
|
if (1000 > sleep_ms) /* Use simpler sleep for shorties */
|
|
|
|
{
|
|
|
|
SHORT_SLEEP(sleep_ms);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
hiber_start(sleep_ms); /* Longer sleeps use brute force */
|
|
|
|
return;
|
|
|
|
}
|