-
-
I've been looking at how Emscripten post-processes the output of LLD in the current Wasm work. It looks like `wasm-emscripten` generates dynCall thunks for every function signature in the table? I can…
-
Can you just send a non-thunk cancellation message with the same key?
-
Hey there:
Apologies if this is way out of scope for your module. My environment is pretty much:
react-native-cli: 2.0.1
react-native: 0.55.1
ignite: 2.1.0 (w/ ignite-ir-boilerplate-andross)
…
-
**Describe the bug**
As initially reported in adlai#5, SBCL occasionally reports deadlock caused by the thread pool.
**To Reproduce**
Steps to reproduce the behavior:
1. Run multiple parallel th…
-
With dll-hooks-list.txt like this:
```
SysWOW64\ntdll.dll,NtGetContextThread,log,handle,pcontext
SysWOW64\ntdll.dll,NtSetContextThread,log,handle,pcontext
SysWOW64\kernel32.dll,GetThreadContext,lo…
-
Consider `Lazy.uncons`. Today, we have in [`Data.ByteString.Lazy`](https://github.com/haskell/bytestring/blob/f301ccf4416f6127b9305c2e2cc600ff8ab8e1e7/Data/ByteString/Lazy.hs#L354-L358):
```haskell
…
-
Libraries we need for performance reasons
- libGL
- libz
- libpng
- libSSL (mbedTLS and OpenSSL?)
Libraries we need for compatibility reasons
- steam client libraries?
- libGLX?
Add mo…
-
Compiling e.g.
```
#include
extern void *b;
extern void *a;
int test() {
memcpy(a, b, 0x10000);
}
```
will result in a call to the llvm.memcpy intrinsic that is then lowered to an ac…
-
https://unisonlanguage.slack.com/archives/CLUNF0J5S/p1701712200962469
Motivating example was:
```
myParser = do
_ = Parse.space
...
```
That should be `!Parse.space` but due to the `_ =…