diff options
author | Timothy Pearson <[email protected]> | 2011-09-16 02:20:14 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-09-16 02:20:14 -0500 |
commit | 96c9b7f819a339925a625e28095ad8ba226ef1d9 (patch) | |
tree | 0894cadcdfa4646650c3064bbf7d84e2e4426275 /tsak | |
parent | 7acb35ad4d1795ea650f3a46d521ac0bc3b82e69 (diff) | |
download | experimental-96c9b7f819a339925a625e28095ad8ba226ef1d9.tar.gz experimental-96c9b7f819a339925a625e28095ad8ba226ef1d9.zip |
Send a grouping of three SAK messages for each SAK keypress
This is needed because each client consumes a single notification message
Diffstat (limited to 'tsak')
-rw-r--r-- | tsak/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tsak/main.cpp b/tsak/main.cpp index 0871479..57e228c 100644 --- a/tsak/main.cpp +++ b/tsak/main.cpp @@ -330,6 +330,8 @@ int main (int argc, char *argv[]) if (hide_event == true) { // Let anyone listening to our interface know that an SAK keypress was received write(mPipe_fd_out, "SAK\n\r", 6); + write(mPipe_fd_out, "SAK\n\r", 6); + write(mPipe_fd_out, "SAK\n\r", 6); } } } |