Magnus Skjegstad

Results 34 comments of Magnus Skjegstad
trafficstars

> You can compile a module with `-fno-threadsafe-statics` to solve the constructor issue. I guess that could at least avoid the calls during the boot process, we just have to...

After thinking a bit more about this I think it would make sense to compile the kernel with `-fno-threadsafe-statics` to avoid the lock guard for now. There's only a single...

My reasoning for doing it for the whole kernel in the PR was that if we are disabling it manually for classes that do this anyway, then it's better to...

This should be fixed now that #2273 has been merged as we no longer use thread safe statics and disallow syscalls until musl has been initialised.