Closed shribe closed 1 year ago
Master CI is now green, I've closed and re-opened this to restart the CI build.
You probably need to add the new modules to: https://github.com/fitzgen/mach/blob/master/mach-test/test/main.rs
ok, done
-- Scott Ribe scott_ribe@elevated-dev.com https://www.linkedin.com/in/scottribe/
On Aug 12, 2019, at 4:54 AM, gnzlbg notifications@github.com wrote:
You probably need to add the new modules to: https://github.com/fitzgen/mach/blob/master/mach-test/test/main.rs
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.
@shribe thanks, everything is green except for formatting, could you run cargo fmt
? I can merge it afterwards and do a new release.
if you're wondering why I never followed up: after getting this working, I discovered that the mach high-precision clock functions are SO SLOW they are worthless in any context where you want the high precision
Mostly this is about adding the functions
mach_host_self
andhost_get_clock_service
. I went ahead and addedhost_page_size
since that was the only function needed to completemach_init
. The constants for choosing clocks were defined as unsigned, buthost_get_clock_service
takes a signed type--so I used the typedef.