From 83aec86d435ee56b7a71613233e01e332cb4c937 Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Thu, 24 Apr 2003 14:23:27 +0000 Subject: [PATCH] Change the scope of raise and the sig flags to be public. --- .../utils/org/eclipse/cdt/utils/spawner/Spawner.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/spawner/Spawner.java b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/spawner/Spawner.java index 3b86afc09d7..4fb820a7cca 100644 --- a/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/spawner/Spawner.java +++ b/core/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/spawner/Spawner.java @@ -13,11 +13,11 @@ import java.util.StringTokenizer; public class Spawner extends Process { - private int NOOP = 0; - private int HUP = 1; - private int INT = 2; - private int KILL = 9; - private int TERM = 15; + public int NOOP = 0; + public int HUP = 1; + public int INT = 2; + public int KILL = 9; + public int TERM = 15; int pid = 0; int status; @@ -235,7 +235,7 @@ public class Spawner extends Process { native int exec0( String[] cmdarray, String[] envp, String dir, int[] chan) throws IOException; native int exec1( String[] cmdarray, String[] envp, String dir) throws IOException; - native int raise(int pid, int sig); + public native int raise(int pid, int sig); native int waitFor(int pid); static {