1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 14:15:23 +02:00

Change the scope of raise and the sig flags to be public.

This commit is contained in:
Alain Magloire 2003-04-24 14:23:27 +00:00
parent 588c2f09b8
commit 83aec86d43

View file

@ -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 {