mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 05:49:12 +02:00
* tms and iovec structures
git-svn-id: trunk@2755 -
This commit is contained in:
parent
c93aeb8e04
commit
8d2dd005c7
@ -223,4 +223,18 @@ type
|
|||||||
|
|
||||||
{$i signal.inc}
|
{$i signal.inc}
|
||||||
|
|
||||||
|
iovec = record
|
||||||
|
iov_base : pointer;
|
||||||
|
iov_len : size_t;
|
||||||
|
end;
|
||||||
|
tiovec=iovec;
|
||||||
|
piovec=^tiovec;
|
||||||
|
|
||||||
|
tms = packed record
|
||||||
|
tms_utime : clock_t; { User CPU time }
|
||||||
|
tms_stime : clock_t; { System CPU time }
|
||||||
|
tms_cutime : clock_t; { User CPU time of terminated child procs }
|
||||||
|
tms_cstime : clock_t; { System CPU time of terminated child procs }
|
||||||
|
end;
|
||||||
|
TTms= tms;
|
||||||
|
pTms= ^tms;
|
||||||
|
Loading…
Reference in New Issue
Block a user