|
Message
From: cvs at opencores.org<cvs@o...>
Date: Fri Nov 25 19:35:19 CET 2005
Subject: [cvs-checkins] MODIFIED: or1k ...
Date: 00/05/11 25:19:35 Modified: or1k/or1ksim toplevel.c Log: Don't drop cycles from the scheduler Revision Changes Path 1.136 or1k/or1ksim/toplevel.c http://www.opencores.org/cvsweb.shtml/or1k/or1ksim/toplevel.c.diff?r1=1.135&r2=1.136 (In the diff below, changes in quantity of whitespace are not shown.) Index: toplevel.c =================================================================== RCS file: /cvsroot/nogj/or1k/or1ksim/toplevel.c,v retrieving revision 1.135 retrieving revision 1.136 diff -u -b -r1.135 -r1.136 --- toplevel.c 6 Nov 2005 16:08:32 -0000 1.135 +++ toplevel.c 25 Nov 2005 18:35:17 -0000 1.136 @@ -308,6 +308,8 @@ tmp->next = scheduler.free_job_queue; scheduler.free_job_queue = tmp; + scheduler.job_queue->time += tmp->time; + #if DYNAMIC_EXECUTION /* This is done here and not after the loop has run because the job function * may raise an exception in which case set_sched_cycle would never be
|