Next: , Previous: , Up: posix time   [Index]


4.18.3 Data structure struct-tms

Structure Type: struct-tms

Scheme level representation of struct tms, (libc)struct tms. It has the following fields:

tms_utime

Exact integer.

tms_stime

Exact integer.

tms_cutime

Exact integer.

tms_cstime

Exact integer.

Function: make-struct-tms utime stime cutime cstime

Build and return a new instance of struct-tms.

Function: struct-tms? obj

Return #t if obj is an instance of struct-tms.

Function: struct-tms-tms_utime tms
Function: struct-tms-tms_stime tms
Function: struct-tms-tms_cutime tms
Function: struct-tms-tms_cstime tms

Accessors for the fields of struct-tms.