Page MenuHomeFreeBSD

Fix Linuxulator clock_gettime() and clock_getres() for cpu clocks
ClosedPublic

Authored by dchagin on Jan 23 2020, 7:37 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Apr 14, 8:16 AM
Unknown Object (File)
Mar 17 2024, 7:35 PM
Unknown Object (File)
Jan 27 2024, 11:51 PM
Unknown Object (File)
Jan 15 2024, 9:27 AM
Unknown Object (File)
Dec 20 2023, 4:57 AM
Unknown Object (File)
Dec 13 2023, 4:13 PM
Unknown Object (File)
Sep 7 2023, 7:32 AM
Unknown Object (File)
Sep 1 2023, 11:35 PM
Subscribers

Details

Summary
  • handle the CLOCK_{PROCESS,THREAD}_CPUTIME_ID specified directly;
  • fix thread/proccess id calculation as in the Linuxulator we should convert the user supplied thread/proccess id by linux_tdfind();
  • fix CPUCLOCK_SCHED case by using kern_{process,thread}_cputime() directly as native get_cputime() used by kern_clock_gettime() uses native tdfind()/pfind() to find proccess/thread.

PR: 240990

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Why do you need D23340 ? Why the current method is not sufficient ?

In D23341#511764, @kib wrote:

Why do you need D23340 ? Why the current method is not sufficient ?

hi, in case when the Linux clock id obtained via pthread_getcpuclockid() call we should use linux_tdfind() to convert thread id of clock id to native struct thread.

This revision is now accepted and ready to land.Feb 1 2020, 10:20 PM