Sverker Eriksson
Sverker Eriksson
It should be possible to confirm. Inlined function `backoff()` is called in two places in `cpool_delete()`. If it is the second place, then it will be stuck for ever in...
There seem to be a possibility for race in BIF halt_2. If two or more calls are done "at the same time" only one will succeed the cmpxchg operation in...
Fix merged to maint for OTP 27.3.
@yushli I did a working proposal in #7326. What do you think?
The problem with BIFs like `maps:merge` is they can take arbitrary long time to finish if the maps are large enough. In order to not starve other Erlang processes from...
@josevalim What do you think about this?
The plan is to get this export/import functionality into 28.1. And then potentially do the loader optimization later maybe already in 28.2.
The "import" step was _literally_ free but unsafe. It is now safe but not totally free. It has to 1. Check the CRC checksum of the imported binary. 2. Allocate...
Yes. Except, instead of a new `re:export` you call `re:compile` with option `export`. I don't remember now the reasoning why we preferred an option before a separate export function. Summer...
The new test case `ecdh_generate_explicit_curve` fails on Fedora Linux. They seem to have their own patched OpenSSL. When drilling down I found this in OpenSSL source file ec_lib.c: ``` if...