Jameson Nash
Jameson Nash
Fix regression introduced by #44548. Fix #45310. Found via rr trace in https://buildkite.com/julialang/julia-master/builds/14475#01825f4d-8c0c-4f70-938c-cd1c8ee4d202, resulting in a compiler error test calling jlbacktrace, and dereferencing invalid memory, if the object happened not...
``` julia> Base._methods_by_ftype(Tuple{}, -1, Base.get_world_counter()) julia: /data/vtjnash/julia/src/julia.h:964: jl_svecref: Assertion `i < jl_svec_len(t)' failed. ``` very foolish thing to need, but Makie has this as a precompile statement (it thinks that...
Fixes: https://github.com/libuv/libuv/issues/3682 Requires fixing https://github.com/libuv/libuv/issues/3691
File system operations may return uid and gid values, which we may want to pretty-print. We already have the code for getting information for the current user, so just need...
This reverts commit https://github.com/libuv/libuv/commit/87f076515937345fda1a1dbc598f34e65e1b81c7. This has been reported to be unnecessary, and also returns the wrong answer (off by exactly 100x), so it is not particularly useful. It is simpler...
We run ASAN and TSAN only for linux, but that means we miss a lot of code for Windows. We can also add a mingw/gcc builder to the matrix at...
We run the TSAN test on CI, but always ignore the status because there are benign issues in the test code. It would be beneficial to go through the code...