implement getServicePid

This commit is contained in:
Doug MacEachern 2004-08-14 04:21:46 +00:00
parent 2896feb983
commit e49c286171
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,11 @@ public class SynchronizedSigar implements SigarProxy {
return this.sigar.getPid();
}
public synchronized long getServicePid(String name)
{
return this.sigar.getServicePid(name);
}
public synchronized Mem getMem()
throws SigarException
{