From 859000ad6216fc685cf556e40a151c565cbcf2fe Mon Sep 17 00:00:00 2001 From: adash Date: Tue, 13 Apr 2010 01:35:32 +0000 Subject: [PATCH] changes --- Robust/src/ClassLibrary/JavaDSM/Thread.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Robust/src/ClassLibrary/JavaDSM/Thread.java b/Robust/src/ClassLibrary/JavaDSM/Thread.java index def703fc..16efbd1b 100644 --- a/Robust/src/ClassLibrary/JavaDSM/Thread.java +++ b/Robust/src/ClassLibrary/JavaDSM/Thread.java @@ -29,13 +29,13 @@ public class Thread { public void run() { } - public static int getStatus(int mid) + public int getStatus(int mid) { if(nativeGetStatus(mid)==1) return 1; //TODO:check if this is safe to add only for the DSM without the recovery version - if(nativeGetStatus(mid)==0) - return 1; +// if(nativeGetStatus(mid)==0) +// return 1; else return -1; -- 2.34.1