mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
make the native method package scope.
This commit is contained in:
parent
ef35f69c64
commit
9b7110a81d
1 changed files with 4 additions and 4 deletions
|
@ -233,10 +233,10 @@ public class Spawner extends Process {
|
|||
}
|
||||
}
|
||||
|
||||
private native int exec0( String[] cmdarray, String[] envp, String dir, int[] chan);
|
||||
private native int exec1( String[] cmdarray, String[] envp, String dir);
|
||||
private native int raise(int pid, int sig);
|
||||
private native int waitFor(int pid);
|
||||
native int exec0( String[] cmdarray, String[] envp, String dir, int[] chan);
|
||||
native int exec1( String[] cmdarray, String[] envp, String dir);
|
||||
native int raise(int pid, int sig);
|
||||
native int waitFor(int pid);
|
||||
|
||||
static {
|
||||
System.loadLibrary("spawner");
|
||||
|
|
Loading…
Add table
Reference in a new issue