repo.or.cz
/
metux-java.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
imported from svn
[metux-java.git]
/
proc
/
Process_LinuxLocal.java
blob
7b8341ad7b8a736de7eb81b311e3c5ba48fb606a
1
2
package
org
.
de
.
metux
.
proc
;
3
4
import
java
.
io
.
File
;
5
6
public class
Process_LinuxLocal
implements
IProcess
7
{
8
File dir
;
9
int
mypid
;
10
11
public int
getPID
()
12
{
13
return
mypid
;
14
}
15
16
public boolean
signal
(
String sig
)
17
{
18
return
false
;
19
}
20
}