summaryrefslogtreecommitdiffstats
path: root/misc/xvnkb/patches/power-consumption.patch
blob: 99130bf71ff6b97f9c00c5758c29abadac4dc80e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- main.c	2006/02/25 20:31:25	1.7
+++ main.c	2009/06/27 11:10:55	1.8
@@ -89,8 +89,14 @@
 /*----------------------------------------------------------------------------*/
 void VKMainProcess()
 {
+	int xfd = ConnectionNumber(display);
+
 	while( !vk_done ) {
-		usleep(1000);
+		struct timeval tv = {1, 0};
+		fd_set rfds;
+		FD_ZERO(&rfds);
+		FD_SET(xfd, &rfds);
+		select(xfd+1, &rfds, 0, 0, &tv);
 
 		if( vk_timeout && vk_flash_on )
 			VKHideFlash();