]> pd.if.org Git - nbds/blob - include/runtime.h
5a87c883b248c490096474701be66c2343301c02
[nbds] / include / runtime.h
1 /* 
2  * Written by Josh Dybnis and released to the public domain, as explained at
3  * http://creativecommons.org/licenses/publicdomain
4  */
5 #ifndef RUNTIME_H
6 #define RUNTIME_H
7
8 #include "tls.h"
9
10 extern DECLARE_THREAD_LOCAL(tid_, int);
11
12 int nbd_thread_create (pthread_t *restrict thread, int thread_id, void *(*start_routine)(void *), void *restrict arg);
13 int nbd_rand (void);
14
15 #endif//RUNTIME_H