effectful/effectful-core/utils/utils.c
Mann mit Hut f0bf1e49db
Split effectful package (#27)
* 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
2021-07-25 15:18:35 +02:00

6 lines
137 B
C

// Correct implementation of ThreadId# equality for GHC < 9.
long effectful_eq_thread(void *tso1, void *tso2)
{
return tso1 == tso2;
}