* so minutes. It seems better to fix the total number of tries (and thus
* the probability of unintended failure) than to fix the total time
* spent.
- *
- * The pg_usleep() delays are measured in milliseconds because 1 msec is a
- * common resolution limit at the OS level for newer platforms. On older
- * platforms the resolution limit is usually 10 msec, in which case the
- * total delay before timeout will be a bit more.
*/
#define MIN_SPINS_PER_DELAY 10
#define MAX_SPINS_PER_DELAY 1000
#define NUM_DELAYS 1000
-#define MIN_DELAY_MSEC 1
-#define MAX_DELAY_MSEC 1000
+#define MIN_DELAY_USEC 1000L
+#define MAX_DELAY_USEC 1000000L
int spins = 0;
int delays = 0;
s_lock_stuck(lock, file, line);
if (cur_delay == 0) /* first time to delay? */
- cur_delay = MIN_DELAY_MSEC;
+ cur_delay = MIN_DELAY_USEC;
- pg_usleep(cur_delay * 1000L);
+ pg_usleep(cur_delay);
#if defined(S_LOCK_TEST)
fprintf(stdout, "*");
cur_delay += (int) (cur_delay *
((double) random() / (double) MAX_RANDOM_VALUE) + 0.5);
/* wrap back to minimum delay when max is exceeded */
- if (cur_delay > MAX_DELAY_MSEC)
- cur_delay = MIN_DELAY_MSEC;
+ if (cur_delay > MAX_DELAY_USEC)
+ cur_delay = MIN_DELAY_USEC;
spins = 0;
}