Commit 4140e9b8 authored by Max Kellermann's avatar Max Kellermann

IOThread: make io_thread_run() static

parent 8fd9d919
......@@ -35,7 +35,7 @@ static struct {
Thread thread;
} io;
void
static void
io_thread_run(void)
{
assert(io_thread_inside());
......
......@@ -31,14 +31,6 @@ void
io_thread_start();
/**
* Run the I/O event loop synchronously in the current thread. This
* can be called instead of io_thread_start(). For testing purposes
* only.
*/
void
io_thread_run();
/**
* Ask the I/O thread to quit, but does not wait for it. Usually, you
* don't need to call this function, because io_thread_deinit()
* includes this.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment