To be compatible with Linux.
PR: 238404
Differential D25117
Add pthread_getname_np() and pthread_setname_np() aliases for pthread_get_name_np() and pthread_set_name_np(). kib on Jun 3 2020, 3:51 PM. Authored by Tags None Referenced Files
Details To be compatible with Linux. PR: 238404
Diff Detail
Event TimelineComment Actions Thanks, I started doing this too but you are faster.
Comment Actions Make functions more compatible with Linux:
Comment Actions Some Haskell ports are now failing with
Full log here: http://beefy18.nyi.freebsd.org/data/head-amd64-default/p538068_s361855/logs/hs-threadscope-0.2.12.log Don't tell me this is another breaking change that would require us to have another flavor of bootstrap compiler. Comment Actions I do not know what exactly happens there, but the message itself means that the binary was built against newer libthr that exports the symbol, but then you tried to activate the binary with libthr that is older and does not export the symbol. We do support backward compatibility, where you can run binary against newer library than it was built against, but not older (that would be forward compatibility, unfortunately we still cannot see the future). |