| 38 | UnixUtils utils; |
| 39 | |
| 40 | UnixUtils::UnixUtils() |
| 41 | { |
| 42 | UUtils = this; |
| 43 | |
| 44 | mUnameInfo = (struct utsname*)dRealMalloc(sizeof(struct utsname));; |
| 45 | if (uname(mUnameInfo) == -1) |
| 46 | { |
| 47 | // oh well |
| 48 | dRealFree(mUnameInfo); |
| 49 | mUnameInfo = NULL; |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | UnixUtils::~UnixUtils() |
| 54 | { |
nothing calls this directly
no test coverage detected