use sigar_open instead of sigar_new wrapper

This commit is contained in:
Doug MacEachern 2004-09-20 22:10:01 +00:00
parent a301251699
commit bcd94bb327
2 changed files with 6 additions and 2 deletions

View File

@ -25,6 +25,7 @@
<mkdir dir="${build.dir}"/>
<csc target="library" debug="${debug}"
unsafe="true"
output="${sigarsharp}">
<sources>
<includes name="src/Sigar.cs"/>

View File

@ -31,13 +31,16 @@ namespace Hyperic.Sigar {
internal HandleRef sigar;
[DllImport(LIBSIGAR)]
private static extern IntPtr sigar_new();
unsafe private static extern int sigar_open(IntPtr *sigar);
[DllImport(LIBSIGAR)]
private static extern int sigar_close(IntPtr sigar);
public Sigar() {
IntPtr handle = sigar_new();
IntPtr handle;
unsafe { //&pointers are considered "unsafe"
sigar_open(&handle);
}
this.sigar = new HandleRef(this, handle);
}