From ead1438fd81ad5b1da39bee772afeab9f9811e19 Mon Sep 17 00:00:00 2001 From: deischen Date: Mon, 26 Feb 2001 01:05:33 +0000 Subject: Limit threads clock resolution to no less than 1000usec (1000Hz). PR: 25300 Submitted by: Tom Pavel (in part) --- lib/libpthread/thread/thr_private.h | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/libpthread/thread/thr_private.h') diff --git a/lib/libpthread/thread/thr_private.h b/lib/libpthread/thread/thr_private.h index 7a37de8..8e04bd5 100644 --- a/lib/libpthread/thread/thr_private.h +++ b/lib/libpthread/thread/thr_private.h @@ -459,6 +459,7 @@ enum pthread_susp { * Clock resolution in microseconds. */ #define CLOCK_RES_USEC 10000 +#define CLOCK_RES_USEC_MIN 1000 /* * Time slice period in microseconds. -- cgit v1.1