Record used to return kernel information in fpUName function.
Source position: ostypes.inc line 59
type UtsName = record |
||
Sysname: array [0..UTSNAME_LENGTH-1] of AnsiChar; |
|
System name. |
Nodename: array [0..UTSNAME_NODENAME_LENGTH-1] of AnsiChar; |
|
Computer name. |
Release: array [0..UTSNAME_LENGTH-1] of AnsiChar; |
|
Release number. |
Version: array [0..UTSNAME_LENGTH-1] of AnsiChar; |
|
Version number. |
Machine: array [0..UTSNAME_LENGTH-1] of AnsiChar; |
|
Machine type. |
Domain: array [0..UTSNAME_DOMAIN_LENGTH-1] of AnsiChar; |
|
Domain name. |
end; |
The elements of this record are null-terminated C style strings, you cannot access them directly. Note that the Domain field is a GNU extension, and may not be available on all platforms.