sagudev
sagudev
There is still one use in mc: https://searchfox.org/mozilla-central/source/python/mozboot/mozboot/android.py#270, but there are also (less important) uses of _ROOT https://searchfox.org/mozilla-central/search?q=ANDROID_NDK_ROOT&path=&case=false®exp=false
For reference [mozilla has MOZ_NON_MEMMOVABLE](https://searchfox.org/mozilla-central/source/js/public/RootingAPI.h#304).
This might help to solve: https://github.com/servo/servo/issues/25726
NOTE-TO-SELF: In servo dom objects are usually already boxed (except if new_uninherited).
I can confirm that the problem still exist, but I think that's not our/bindgen bug. Mozilla-esr115 has these two functions declared in https://searchfox.org/mozilla-esr115/source/js/public/PropertyAndElement.h#381: ```c // maped to JS_DeletePropertyById by bindgen...
There is `BINDGEN_EXTRA_CLANG_ARGS`, could we use it instead of introducing new variable?
This was indeed very helpful. There is also `--enable-stdcxx-compat` configure flag https://searchfox.org/mozilla-esr115/source/build/moz.configure/toolchain.configure#2800, but we would need some kind of detection for it.
I created https://github.com/servo/ipc-channel/pull/335 that handles empty slice in `IpcSharedMemory` instead of in `OsIpcSharedMemory`.
Closed in favor of https://github.com/servo/ipc-channel/pull/335
We got hit by this in WebGPU stack: https://servo.zulipchat.com/#narrow/stream/263398-general/topic/ipc_channel/near/432692650 (webgpu thread send msg to itself). Maybe for debugging purposes we could create cfg attr that would limit size of buffer...