Blame view

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