1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

cleanup: clvmd drop unused enum state

This commit is contained in:
Zdenek Kabelac 2014-04-09 08:11:49 +02:00
parent e2f194952a
commit d896abc705

View File

@ -56,7 +56,7 @@ struct localsock_bits {
int cleanup_needed; /* helper for cleanup_zombie */
struct local_client *pipe_client;
pthread_t threadid;
enum { PRE_COMMAND, POST_COMMAND, QUIT } state;
enum { PRE_COMMAND, POST_COMMAND } state;
pthread_mutex_t mutex; /* Main thread and worker synchronisation */
pthread_cond_t cond;
};