Blame view

Threads/threadsSocket.c 328 Bytes
5b7887fc   Speedclocker   Début thread
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  #include <stdio.h>
  #include <stdlib.h>
  #include <pthread.h>
  
  
  int lanceThread(void(* fonction) (void *), void* arg, int size)
  {
  	pthread_t thr_id;
  
  	if(pthread_create(&thr_id, NULL, fonction, arg)!=0) { fprintf(stderr, "Le thread n'a pas pu être créé.\n"); return -1; }
  	
  	pthread_detach(thr_id);
  
  	
  
  }
  
  int main(void)
  {
  	
  }