Esempio n. 1
0
 private static int ToTimespec(IntPtr source, out Timespec destination)
 {
     throw new System.NotImplementedException();
 }
 public static bool TryCopy(IntPtr source, out Timespec destination)
 {
     return(ToTimespec(source, out destination) == 0);
 }
Esempio n. 3
0
 private static int FromTimespec(ref Timespec source, IntPtr destination)
 {
     throw new System.NotImplementedException();
 }
 private static extern int ToTimespec(IntPtr source, out Timespec destination);
 public static bool TryCopy(ref Timespec source, IntPtr destination)
 {
     return(FromTimespec(ref source, destination) == 0);
 }
 private static extern int FromTimespec(ref Timespec source, IntPtr destination);
Esempio n. 7
0
 public static int nanosleep(ref Timespec req, ref Timespec rem)
 {
     throw new System.NotImplementedException();
 }
Esempio n. 8
0
		public static extern int nanosleep (ref Timespec req, ref Timespec rem);