mirror of
https://github.com/hmaxnl/netex.git
synced 2025-04-19 11:38:13 +02:00
10 lines
205 B
C
10 lines
205 B
C
#ifndef THREAD_MANAGER_H
|
|
#define THREAD_MANAGER_H
|
|
#include <pthread.h>
|
|
#include "sockets.h"
|
|
|
|
int init_thread(int* clientfd, void *(*func) (void *));
|
|
int setup_server_thread(void *(*func) (void*));
|
|
|
|
#endif
|