diff options
-rw-r--r-- | src/fastd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fastd.h b/src/fastd.h index f46e221..cecb542 100644 --- a/src/fastd.h +++ b/src/fastd.h @@ -299,8 +299,8 @@ struct fastd_context { fastd_timeout_t next_maintenance; /**< The time of the next maintenance call */ VECTOR(pid_t) async_pids; /**< PIDs of asynchronously executed commands which still have to be reaped */ - int async_rfd; /**< The read side of the pipe used to send data from other thread to the main thread */ - int async_wfd; /**< The write side of the pipe used to send data from other thread to the main thread */ + int async_rfd; /**< The read side of the pipe used to send data from other threads to the main thread */ + int async_wfd; /**< The write side of the pipe used to send data from other threads to the main thread */ pthread_attr_t detached_thread; /**< pthread_attr_t for creating detached threads */ |