We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e93ad4c commit 3e67869Copy full SHA for 3e67869
runtime/flang/util.c
@@ -354,7 +354,7 @@ void times(tms *time_struct) {
354
GetProcessTimes( GetCurrentProcess(),
355
&time_create, &time_exit, &accum_sys, &accum_user );
356
357
- tms.time_struct = convert_filetime(accum_user);
358
- tms.time_struct = convert_filetime(accum_sys);
+ time_struct.tms_utime = convert_filetime(accum_user);
+ time_struct.tms_stime = convert_filetime(accum_sys);
359
}
360
#endif
0 commit comments