summaryrefslogtreecommitdiff
path: root/packages/libc/src/stime.inc
diff options
context:
space:
mode:
Diffstat (limited to 'packages/libc/src/stime.inc')
-rw-r--r--packages/libc/src/stime.inc79
1 files changed, 79 insertions, 0 deletions
diff --git a/packages/libc/src/stime.inc b/packages/libc/src/stime.inc
new file mode 100644
index 0000000000..22e690ba3f
--- /dev/null
+++ b/packages/libc/src/stime.inc
@@ -0,0 +1,79 @@
+{ ---------------------------------------------------------------------
+ Macros from sys/time.h
+ ---------------------------------------------------------------------}
+
+
+Procedure TIMEVAL_TO_TIMESPEC(const tv: TTimeVal; var ts: TTimeSpec);
+begin
+ ts.tv_sec:=tv.tv_sec;
+ ts.tv_nsec:=tv.tv_usec*1000;
+end;
+
+
+Procedure TIMESPEC_TO_TIMEVAL(var tv: TTimeVal; const ts: TTimeSpec);
+begin
+ tv.tv_sec:=ts.tv_sec;
+ tv.tv_usec:=ts.tv_nsec div 1000;
+end;
+
+
+Function timerisset(const Value: TTimeVal): Boolean;
+begin
+ Result:=(Value.tv_sec<>0) or (Value.tv_usec<>0);
+end;
+
+
+Procedure timerclear(var Value: TTimeVal);
+begin
+ Value.tv_sec:=0;
+ Value.tv_usec:=0;
+end;
+
+
+Function __timercmp(const a, b: TTimeVal): Integer;
+
+begin
+ if a.tv_sec=b.tv_sec then
+ begin
+ if a.tv_usec>b.tv_usec then
+ Result:=1
+ else if a.tv_usec<b.tv_usec then
+ Result:=-1
+ else
+ Result:=0;
+ end
+ else
+ begin
+ if a.tv_sec>b.tv_sec then
+ Result:=1
+ else
+ Result:=-1;
+ end;
+end;
+
+
+Function timeradd(const a, b: TTimeVal): TTimeVal;
+
+begin
+ Result.tv_sec:=a.tv_sec+b.tv_sec;
+ Result.tv_usec:=a.tv_usec+b.tv_usec;
+ if Result.tv_usec>=1000000 then
+ begin
+ Inc(Result.tv_sec);
+ Dec(Result.tv_usec, 1000000);
+ end;
+end;
+
+
+Function timersub(const a, b: TTimeVal): TTimeVal;
+
+begin
+ Result.tv_sec:=a.tv_sec-b.tv_sec;
+ Result.tv_usec:=a.tv_usec-b.tv_usec;
+ if Result.tv_usec<0 then
+ begin
+ Dec(Result.tv_sec);
+ Inc(Result.tv_usec,1000000);
+ end;
+end;
+