From: <jsa...@us...> - 2008-11-11 10:58:22
|
Revision: 81 http://flexotask.svn.sourceforge.net/flexotask/?rev=81&view=rev Author: jsauerbach Date: 2008-11-11 10:58:11 +0000 (Tue, 11 Nov 2008) Log Message: ----------- Minor javadoc corrections to get cross-references right. Modified Paths: -------------- trunk/flexotask/src/com/ibm/realtime/flexotask/vm/FlexotaskVMBridge.java Modified: trunk/flexotask/src/com/ibm/realtime/flexotask/vm/FlexotaskVMBridge.java =================================================================== --- trunk/flexotask/src/com/ibm/realtime/flexotask/vm/FlexotaskVMBridge.java 2008-11-10 20:40:32 UTC (rev 80) +++ trunk/flexotask/src/com/ibm/realtime/flexotask/vm/FlexotaskVMBridge.java 2008-11-11 10:58:11 UTC (rev 81) @@ -28,7 +28,7 @@ public static final int NORMAL_MEMORY = 0; /** Indicator passed to createMemorySpace to indicate the scheduler heap */ public static final int SCHEDULER_MEMORY = 1; - /** @see FlexotaskSystemSupport#allocateStablePrimitiveArray(Class, int, StableArray) */ + /** @see FlexotaskSystemSupport#allocateStablePrimitiveArray(Class, int, StableArrayImpl) */ Object allocateStablePrimitiveArray(Class type, int size); /** @see FlexotaskSystemSupport#becomeFlexotaskThread(boolean) */ void becomeFlexotaskThread(boolean state); @@ -72,7 +72,7 @@ long getLongArrayElement(long[] object, int index); /** @see TransactionalOperations#getLongField(Object, int) */ long getLongField(Object object, int index); - /** @see FlexotaskSystemSupport#getObjectMonitor(Notifier) */ + /** @see FlexotaskSystemSupport#getObjectMonitor(Object) */ long getMonitor(Object object); /** @see TransactionalOperations#getReferenceArrayElement(Object[], int) */ Object getReferenceArrayElement(Object[] object, int index); @@ -90,7 +90,7 @@ void nanosleep(long nextDeadline); /** @see FlexotaskSystemSupport#nanoTime() */ long nanoTime(); - /** @see FlexotaskSystemSupport#notifyIfWaiting(Notifier) */ + /** @see FlexotaskSystemSupport#notifyIfWaiting(Object, long) */ void notifyIfWaiting(long monitor); /** @see FlexotaskSystemSupport#pin(Object[]) */ boolean pin(Object[] toPin); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |