| 360 | |
| 361 | #ifndef HAVE_TIMES |
| 362 | static void times(struct tms* buffer) |
| 363 | { |
| 364 | /************************************** |
| 365 | * |
| 366 | * t i m e s |
| 367 | * |
| 368 | ************************************** |
| 369 | * |
| 370 | * Functional description |
| 371 | * Emulate the good old unix call "times". Only both with user time. |
| 372 | * |
| 373 | **************************************/ |
| 374 | |
| 375 | buffer->tms_utime = clock(); |
| 376 | } |
| 377 | #endif |
| 378 | |
| 379 |
no outgoing calls
no test coverage detected