summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'daemon/DriverSource.h')
-rw-r--r--daemon/DriverSource.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/daemon/DriverSource.h b/daemon/DriverSource.h
index dcf1078..ec27b08 100644
--- a/daemon/DriverSource.h
+++ b/daemon/DriverSource.h
@@ -14,6 +14,7 @@
14 14
15#include "Source.h" 15#include "Source.h"
16 16
17class Buffer;
17class Fifo; 18class Fifo;
18 19
19class DriverSource : public Source { 20class DriverSource : public Source {
@@ -37,6 +38,10 @@ public:
37 static int writeReadDriver(const char *path, int64_t *value); 38 static int writeReadDriver(const char *path, int64_t *value);
38 39
39private: 40private:
41 static void *bootstrapThreadStatic(void *arg);
42 void bootstrapThread();
43
44 Buffer *mBuffer;
40 Fifo *mFifo; 45 Fifo *mFifo;
41 sem_t *const mSenderSem; 46 sem_t *const mSenderSem;
42 sem_t *const mStartProfile; 47 sem_t *const mStartProfile;