[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
[cdt-patch] Spawner change visibility
|
Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/ChangeLog,v
retrieving revision 1.89
diff -u -r1.89 ChangeLog
--- ChangeLog 17 Apr 2003 12:59:33 -0000 1.89
+++ ChangeLog 24 Apr 2003 14:20:03 -0000
@@ -1,3 +1,8 @@
+2003-04-24 Alain Magloire
+
+ * utils/org/eclipse/cdt/utils/spawner/Spawner.java (raise):
+ Change the scope to be public.
+
2003-04-12 Alain Magloire
Bug 36624
Index: utils/org/eclipse/cdt/utils/spawner/Spawner.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/utils/org/eclipse/cdt/utils/spawner/Spawner.java,v
retrieving revision 1.5
diff -u -r1.5 Spawner.java
--- utils/org/eclipse/cdt/utils/spawner/Spawner.java 17 Oct 2002 13:59:44 -0000 1.5
+++ utils/org/eclipse/cdt/utils/spawner/Spawner.java 24 Apr 2003 14:20:03 -0000
@@ -13,11 +13,11 @@
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 @@
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 {