MCPcopy Create free account
hub / github.com/Hamlib/Hamlib / close_sync_data_pipe

Function close_sync_data_pipe

src/iofunc.c:67–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67static void close_sync_data_pipe(hamlib_port_t *p)
68{
69 if (p->sync_data_pipe != NULL)
70 {
71 async_pipe_close(p->sync_data_pipe);
72 p->sync_data_pipe = NULL;
73 }
74
75 if (p->sync_data_error_pipe != NULL)
76 {
77 async_pipe_close(p->sync_data_error_pipe);
78 p->sync_data_error_pipe = NULL;
79 }
80}
81
82static int create_sync_data_pipe(hamlib_port_t *p)
83{

Callers 3

create_sync_data_pipeFunction · 0.85
port_openFunction · 0.85
port_closeFunction · 0.85

Calls 1

async_pipe_closeFunction · 0.85

Tested by

no test coverage detected