mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
Enable other threads
This commit is contained in:
parent
2efaebf598
commit
7432e78c34
1 changed files with 6 additions and 6 deletions
12
src/main.c
12
src/main.c
|
@ -84,14 +84,14 @@ int main(int argc, char **argv) {
|
|||
pthread_t tid_probe;
|
||||
pthread_create(&tid_probe, NULL, &remove_array_thread, NULL);
|
||||
|
||||
//pthread_t tid_client;
|
||||
//pthread_create(&tid_client, NULL, &remove_client_array_thread, NULL);
|
||||
pthread_t tid_client;
|
||||
pthread_create(&tid_client, NULL, &remove_client_array_thread, NULL);
|
||||
|
||||
//pthread_t tid_get_client;
|
||||
//pthread_create(&tid_get_client, NULL, &update_clients_thread, NULL);
|
||||
pthread_t tid_get_client;
|
||||
pthread_create(&tid_get_client, NULL, &update_clients_thread, NULL);
|
||||
|
||||
//pthread_t tid_kick_clients;
|
||||
//pthread_create(&tid_kick_clients, NULL, &kick_clients_thread, NULL);
|
||||
pthread_t tid_kick_clients;
|
||||
pthread_create(&tid_kick_clients, NULL, &kick_clients_thread, NULL);
|
||||
|
||||
//pthread_create(&tid, NULL, &remove_thread, NULL);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue