flix _times implementation

This commit is contained in:
Francisco Javier Trujillo Mata
2024-04-03 23:56:44 +02:00
parent 3615791863
commit eef3421873

View File

@@ -758,7 +758,7 @@ clock_t _times(struct tms *buffer)
if (buffer != NULL) {
buffer->tms_utime = clk;
buffer->tms_stime = 0;
buffer->tms_cutime = clk;
buffer->tms_cutime = 0;
buffer->tms_cstime = 0;
}