diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-12-27 21:36:52 +0100 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-12-27 21:51:58 +0100 |
commit | dbd901e65371ae390c36e7f6ed4a8bf59db6a5f6 (patch) | |
tree | 3bd59c9bae40704ee8382e93a9006f2ea3cd6171 /src/ipcpd/ipcp.h | |
parent | 0324479318e76cecbe70b274cf2ab3479fe6f437 (diff) | |
download | ouroboros-dbd901e65371ae390c36e7f6ed4a8bf59db6a5f6.tar.gz ouroboros-dbd901e65371ae390c36e7f6ed4a8bf59db6a5f6.zip |
ipcpd: Hide the IPCP mainloop
Since the mainloop threadpool is created on ipcp_init and all threads
waited for on ipcp_fini, there is no need for it to be accessible from
elsewhere.
Diffstat (limited to 'src/ipcpd/ipcp.h')
-rw-r--r-- | src/ipcpd/ipcp.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ipcpd/ipcp.h b/src/ipcpd/ipcp.h index 6cd6f99e..f090f415 100644 --- a/src/ipcpd/ipcp.h +++ b/src/ipcpd/ipcp.h @@ -66,8 +66,6 @@ enum ipcp_state ipcp_get_state(void); int ipcp_wait_state(enum ipcp_state state, const struct timespec * timeout); -void * ipcp_main_loop(void * o); - int ipcp_parse_arg(int argc, char * argv[]); |