Blame view

includes/libthrd.h 266 Bytes
32c9271a   skhinach   modif
1
2
3
  #ifndef __LIBTHRD_H__
  #define __LIBTHRD_H__
  
a69a94a7   skhinach   Ajout de gestion ...
4
5
6
7
8
  #include "http.h"
  
  typedef struct{int socket; struct interface_info* interfaces[20];} Arg_Thread;
  
  void* reponseConnexion(void* arg_sock_interf);
32c9271a   skhinach   modif
9
10
11
12
13
  
  int lanceThread(void(* fonction) (void *), void* arg, int size);
  
  
  #endif