]> git.proxmox.com Git - mirror_frr.git/blobdiff - bgpd/bgp_io.h
Merge pull request #3409 from opensourcerouting/feature/cleanup-topotest-docker-docs
[mirror_frr.git] / bgpd / bgp_io.h
index 7cfd1db7106982e50bfa6d56daa366bcc25d5f91..14a12d3705b977dc2395e35cea293ac3f5db91fa 100644 (file)
 #include "bgpd/bgpd.h"
 #include "frr_pthread.h"
 
-/**
- * Initializes data structures and flags for the write thread.
- *
- * This function must be called from the main thread before
- * bgp_writes_start() is invoked.
- */
-extern void bgp_io_init(void);
-
 /**
  * Start function for write thread.
  *
@@ -43,15 +35,6 @@ extern void bgp_io_init(void);
  */
 extern void *bgp_io_start(void *arg);
 
-/**
- * Wait until the IO thread is ready to accept jobs.
- *
- * This function must be called immediately after the thread has been created
- * for running. Use of other functions before calling this one will result in
- * undefined behavior.
- */
-extern void bgp_io_wait_running(void);
-
 /**
  * Start function for write thread.
  *