diff options
author | Luca Dariz <luca@orpolo.org> | 2024-01-11 22:09:03 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-01-13 22:50:49 +0100 |
commit | a42040231e574f7ea52be341d6c212cba9411e72 (patch) | |
tree | 871fb3d76ddbf324262be83fb6d6322f9ebbc935 /tests/include | |
parent | 20e69972d4187edfa3937f6f00e0149b448db734 (diff) | |
download | gnumach-a42040231e574f7ea52be341d6c212cba9411e72.tar.gz gnumach-a42040231e574f7ea52be341d6c212cba9411e72.tar.bz2 gnumach-a42040231e574f7ea52be341d6c212cba9411e72.zip |
add thread creation helper to tests
Message-ID: <20240111210907.419689-7-luca@orpolo.org>
Diffstat (limited to 'tests/include')
-rw-r--r-- | tests/include/testlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/include/testlib.h b/tests/include/testlib.h index e492f2f6..a3f3a6a8 100644 --- a/tests/include/testlib.h +++ b/tests/include/testlib.h @@ -65,6 +65,7 @@ const char* e2s(int err); const char* e2s_gnumach(int err); void halt(); int msleep(uint32_t timeout); +thread_t test_thread_start(task_t task, void(*routine)(void*), void* arg); mach_port_t host_priv(void); mach_port_t device_priv(void); |