diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-19 21:23:20 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-05-19 21:23:20 +0200 |
commit | 6d14945e40a63086702ee4d0698032c3708337ed (patch) | |
tree | 0dd80b5aae8ca85ad18b44ef763288a666b75e2c /src/mds-base.h | |
parent | set up signal handling (diff) | |
download | mds-6d14945e40a63086702ee4d0698032c3708337ed.tar.gz mds-6d14945e40a63086702ee4d0698032c3708337ed.tar.bz2 mds-6d14945e40a63086702ee4d0698032c3708337ed.tar.xz |
m + store master thread
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/mds-base.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mds-base.h b/src/mds-base.h index e206a78..b4e4ad7 100644 --- a/src/mds-base.h +++ b/src/mds-base.h @@ -19,6 +19,9 @@ #define MDS_MDS_BASE_H +#include <pthread.h> + + /** * Characteristics of the server */ @@ -71,6 +74,11 @@ extern int is_reexec; */ extern int socket_fd; +/** + * The thread that runs the master loop + */ +extern pthread_t master_thread; + /** |