summaryrefslogtreecommitdiffstats
path: root/video/out/x11_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/x11_common.h')
-rw-r--r--video/out/x11_common.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/video/out/x11_common.h b/video/out/x11_common.h
index e69640cc64..b2f6336d25 100644
--- a/video/out/x11_common.h
+++ b/video/out/x11_common.h
@@ -24,9 +24,6 @@
#include <X11/Xlib.h>
#include <X11/Xutil.h>
-#include "osdep/atomic.h"
-#include "osdep/semaphore.h"
-
#include "common/common.h"
struct vo;
@@ -66,11 +63,13 @@ struct vo_x11_state {
bool screensaver_enabled;
bool dpms_touched;
- double screensaver_time_last;
+
+ long screensaver_thread_window;
pthread_t screensaver_thread;
+ pthread_mutex_t screensaver_thread_lock;
+ pthread_cond_t screensaver_thread_wakeup;
bool screensaver_thread_running;
- sem_t screensaver_sem;
- atomic_bool screensaver_terminate;
+ bool screensaver_thread_suspend;
XIM xim;
XIC xic;