Ejemplo n.º 1
0
 static extern Timespec gprsharp_inf_future(GPRClockType clockType);
Ejemplo n.º 2
0
 static extern Timespec gprsharp_inf_past(GPRClockType clockType);
Ejemplo n.º 3
0
 public Timespec(IntPtr tv_sec, int tv_nsec)
 {
     this.tv_sec = tv_sec;
     this.tv_nsec = tv_nsec;
     this.clock_type = GPRClockType.Realtime;
 }
Ejemplo n.º 4
0
 static extern Timespec gprsharp_now(GPRClockType clockType);
Ejemplo n.º 5
0
 static extern Timespec gprsharp_convert_clock_type(Timespec t, GPRClockType targetClock);
Ejemplo n.º 6
0
 public Timespec(IntPtr tv_sec, int tv_nsec, GPRClockType clock_type)
 {
     this.tv_sec = tv_sec;
     this.tv_nsec = tv_nsec;
     this.clock_type = clock_type;
 }
Ejemplo n.º 7
0
 static extern Timespec gprsharp_now(GPRClockType clockType);
Ejemplo n.º 8
0
 Timespec IPlatformInvocation.gprsharp_inf_past(GPRClockType clockType)
 {
     return gprsharp_inf_past(clockType);
 }
Ejemplo n.º 9
0
 public Timespec(long tv_sec, int tv_nsec, GPRClockType clock_type)
 {
     this.tv_sec     = tv_sec;
     this.tv_nsec    = tv_nsec;
     this.clock_type = clock_type;
 }
Ejemplo n.º 10
0
 /// <summary>
 /// Converts the timespec to desired clock type.
 /// </summary>
 public Timespec ToClockType(GPRClockType targetClock)
 {
     return(gprsharp_convert_clock_type(this, targetClock));
 }
Ejemplo n.º 11
0
 Timespec IPlatformInvocation.gprsharp_convert_clock_type(Timespec t, GPRClockType targetClock)
 {
     return(gprsharp_convert_clock_type(t, targetClock));
 }
Ejemplo n.º 12
0
 Timespec IPlatformInvocation.gprsharp_inf_past(GPRClockType clockType)
 {
     return(gprsharp_inf_past(clockType));
 }
Ejemplo n.º 13
0
 Timespec IPlatformInvocation.gprsharp_now(GPRClockType clockType)
 {
     return(gprsharp_now(clockType));
 }
Ejemplo n.º 14
0
 static extern Timespec gprsharp_convert_clock_type(Timespec t, GPRClockType targetClock);
Ejemplo n.º 15
0
 static extern Timespec gprsharp_inf_future(GPRClockType clockType);
Ejemplo n.º 16
0
 Timespec IPlatformInvocation.gprsharp_now(GPRClockType clockType)
 {
     return gprsharp_now(clockType);
 }
Ejemplo n.º 17
0
 /// <summary>
 /// Converts the timespec to desired clock type.
 /// </summary>
 public Timespec ToClockType(GPRClockType targetClock)
 {
     return gprsharp_convert_clock_type(this, targetClock);
 }
Ejemplo n.º 18
0
 Timespec IPlatformInvocation.gprsharp_convert_clock_type(Timespec t, GPRClockType targetClock)
 {
     return gprsharp_convert_clock_type(t, targetClock);
 }
Ejemplo n.º 19
0
 static extern Timespec gprsharp_inf_past(GPRClockType clockType);