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)
Tue, Dec 30, 3:48 AM
Unknown Object (File)
Mon, Dec 29, 11:56 AM
Unknown Object (File)
Nov 30 2025, 1:08 PM
Unknown Object (File)
Nov 20 2025, 11:50 PM
Unknown Object (File)
Nov 20 2025, 11:45 PM
Unknown Object (File)
Nov 20 2025, 11:44 PM
Unknown Object (File)
Nov 20 2025, 11:42 PM
Unknown Object (File)
Nov 19 2025, 6:16 AM
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