|
Message
From: cvs at opencores.org<cvs@o...>
Date: Sat Feb 24 18:50:52 CET 2007
Subject: [cvs-checkins] MODIFIED: jop ...
Date: 00/07/02 24:18:50 Modified: jop/java/target/src/rtapi/sc4 PeriodicThread.java Log: dummy constructor with RelativeTime Revision Changes Path 1.2 jop/java/target/src/rtapi/sc4/PeriodicThread.java http://www.opencores.org/cvsweb.shtml/jop/java/target/src/rtapi/sc4/PeriodicThread.java.diff?r1=1.1&r2=1.2 (In the diff below, changes in quantity of whitespace are not shown.) Index: PeriodicThread.java =================================================================== RCS file: /cvsroot/martin/jop/java/target/src/rtapi/sc4/PeriodicThread.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -b -r1.1 -r1.2 --- PeriodicThread.java 5 Dec 2006 22:03:55 -0000 1.1 +++ PeriodicThread.java 24 Feb 2007 17:50:52 -0000 1.2 @@ -10,4 +10,7 @@ super(period, period, 0, 0); } + public PeriodicThread(javax.realtime.RelativeTime period) { + super(period.getUs(), period.getUs(), 0, 0); + } }
|
 |