FACT++  1.0
void dim_tcpip_stop ( )

Definition at line 341 of file tcpip.c.

References closesock, DIM_IO_Done, DIM_IO_path, and init_done.

Referenced by dim_signal_cond(), and dim_stop().

342 {
343 #ifdef WIN32
345 #else
346  close(DIM_IO_path[0]);
347  close(DIM_IO_path[1]);
348 #endif
349  DIM_IO_path[0] = -1;
350  DIM_IO_path[1] = -1;
351  DIM_IO_Done = 0;
352  init_done = 0;
353 }
static int DIM_IO_Done
Definition: tcpip.c:100
static int DIM_IO_path[2]
Definition: tcpip.c:99
static int init_done
Definition: tcpip.c:92
#define closesock(s)
Definition: tcpip.c:36

+ Here is the caller graph for this function: