mirror of
https://github.com/haskell-effectful/effectful.git
synced 2024-12-18 11:31:38 +03:00
f0bf1e49db
* Moved effectful library to a subdirectory * Initial commit of the effectful-core library * Removed tests/benchmarks/examples from effectful-core package * Removed READMEs from packages * Updated CI * Refactored doctest script This is a bit closer to the CI setup. * Adjusted dependencies * Updated README * Updated the package descriptions * Added examples to test suite
6 lines
137 B
C
6 lines
137 B
C
// Correct implementation of ThreadId# equality for GHC < 9.
|
|
long effectful_eq_thread(void *tso1, void *tso2)
|
|
{
|
|
return tso1 == tso2;
|
|
}
|