From d3ee5202a141534d8c2799b94929461e0dfeda3f Mon Sep 17 00:00:00 2001 From: simonmar Date: Thu, 8 Jan 2004 15:26:44 +0000 Subject: [PATCH] [project @ 2004-01-08 15:26:44 by simonmar] delayzh: Round *up* to nearest tick, not down --- ghc/rts/PrimOps.hc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc/rts/PrimOps.hc b/ghc/rts/PrimOps.hc index 48f5cac..134ed1b 100644 --- a/ghc/rts/PrimOps.hc +++ b/ghc/rts/PrimOps.hc @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: PrimOps.hc,v 1.115 2003/10/22 15:01:00 simonmar Exp $ + * $Id: PrimOps.hc,v 1.116 2004/01/08 15:26:44 simonmar Exp $ * * (c) The GHC Team, 1998-2002 * @@ -1656,7 +1656,7 @@ FN_(delayzh_fast) CurrentTSO->why_blocked = BlockedOnDoProc; APPEND_TO_BLOCKED_QUEUE(CurrentTSO); #else - target = (R1.i / (TICK_MILLISECS*1000)) + getourtimeofday(); + target = ((R1.i + TICK_MILLISECS*1000-1) / (TICK_MILLISECS*1000)) + getourtimeofday(); CurrentTSO->block_info.target = target; /* Insert the new thread in the sleeping queue. */ -- 1.7.10.4