From 95fc902412b2424680fa1f40399a9b6426855dad Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 30 Jan 2012 11:57:08 -0600 Subject: [PATCH] Rename ksocket and kcache --- tsak/README | 2 +- tsak/main.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tsak/README b/tsak/README index ef2fe0c..9e10b47 100644 --- a/tsak/README +++ b/tsak/README @@ -5,5 +5,5 @@ This is an experimental SAK filter that uses evdev and friends to: In fact, even root applications will be unaware of the SAK press unless they are monitoring the out-of-band SAK interface. -The interface is very simple. Listen on /tmp/ksocket-global/tsak and you will receive the null-terminated string "SAK\n\r" when the SAK is pressed. +The interface is very simple. Listen on /tmp/tdesocket-global/tsak and you will receive the null-terminated string "SAK\n\r" when the SAK is pressed. Note that the string may be sent multiple times, especially if the SAK is held down. diff --git a/tsak/main.cpp b/tsak/main.cpp index 050d6c0..f96cf23 100644 --- a/tsak/main.cpp +++ b/tsak/main.cpp @@ -36,8 +36,8 @@ License along with tsak. If not, see http://www.gnu.org/licenses/. #include #include -#define FIFO_DIR "/tmp/ksocket-global" -#define FIFO_FILE_OUT "/tmp/ksocket-global/tsak" +#define FIFO_DIR "/tmp/tdesocket-global" +#define FIFO_FILE_OUT "/tmp/tdesocket-global/tsak" #define TestBit(bit, array) (array[(bit) / 8] & (1 << ((bit) % 8)))