BitLab 0.1.0
BitLab: A Browser for the Bitcoin P2P Network and Blockchain
Loading...
Searching...
No Matches
thread.h
Go to the documentation of this file.
1#ifndef __THREAD_H
2#define __THREAD_H
3
4#include <stdio.h>
5#include <pthread.h>
6
14pthread_t thread_runner(void* (*start_routine)(void*), const char* name, void* arg);
15
16#endif // __THREAD_H
pthread_t thread_runner(void *(*start_routine)(void *), const char *name, void *arg)
Thread runner function.
Definition thread.c:9