diff options
author | Eric Wong <normalperson@yhbt.net> | 2008-10-04 21:00:47 -0700 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2008-10-04 21:00:52 -0700 |
commit | 3e0c1bcf6237f42506cd0d74046e74a70fff0cb7 (patch) | |
tree | 29340c40beff08df42d8a05a296172959dacec7d /src/main_notify.h | |
parent | 662b6bc9d75d879e52456f680fb1c4fdd0053996 (diff) | |
parent | 18ba438d902c801c5f1a6a37d43c87a779e06a84 (diff) | |
download | mpd-3e0c1bcf6237f42506cd0d74046e74a70fff0cb7.tar.gz mpd-3e0c1bcf6237f42506cd0d74046e74a70fff0cb7.tar.xz mpd-3e0c1bcf6237f42506cd0d74046e74a70fff0cb7.zip |
Merge commit 'box/directory' into ew/song-locks
* commit 'box/directory':
command: get rid of specialized list handlers
directory: simplify list update handling logic
main_notify: define main_task so we can use it for assertions
directory: streamline deletes
Conflicts:
src/command.c
Diffstat (limited to '')
-rw-r--r-- | src/main_notify.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main_notify.h b/src/main_notify.h index db36042a7..dc743b833 100644 --- a/src/main_notify.h +++ b/src/main_notify.h @@ -21,6 +21,10 @@ #ifndef MAIN_NOTIFY_H #define MAIN_NOTIFY_H +#include <pthread.h> + +extern pthread_t main_task; + void init_main_notify(void); void wakeup_main_task(void); |