diff options
author | dzwdz | 2022-07-10 11:38:53 +0200 |
---|---|---|
committer | dzwdz | 2022-07-10 11:38:53 +0200 |
commit | 45c5bf044a063a289fad6a53b8d27ce675d9c272 (patch) | |
tree | d3e4f2f59d2bbf825ad4bf81b821934a27835ffa /src/init/tests/main.h | |
parent | f6039ca691352bce5d050a4e5ffa768fadbaf68c (diff) |
init/lib: implement "evil semaphores"
I started implementing native semaphores in the kernel, but then I've
realized that I can implement them in userland using pipes.
Thus, this hot garbage was born.
Diffstat (limited to 'src/init/tests/main.h')
-rw-r--r-- | src/init/tests/main.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init/tests/main.h b/src/init/tests/main.h index 47c2507..ed11c5e 100644 --- a/src/init/tests/main.h +++ b/src/init/tests/main.h @@ -4,6 +4,7 @@ void stress_all(void); void test_all(void); void test_pipe(void); +void test_semaphore(void); #ifdef TEST_MACROS |