From 16121571eddfa4cf03fc586ae5c2512705e9461f Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 27 Dec 2015 16:32:25 +0100 Subject: clut could be left unrestored because of race condition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/unstickpixels.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/unstickpixels.c') diff --git a/src/unstickpixels.c b/src/unstickpixels.c index 15b0d64..9a59aa3 100644 --- a/src/unstickpixels.c +++ b/src/unstickpixels.c @@ -17,6 +17,7 @@ * along with this program. If not, see . */ #define _XOPEN_SOURCE 700 +#define _DEFAULT_SOURCE #include #include #include @@ -202,11 +203,13 @@ static void usage(void) */ static void term_clut() { - size_t i; + size_t i, j; + if (clut_state == 2) + for (j = 0; j < 2; j++, usleep(1000000L / 10L)) + for (i = 0; crtcs && crtcs[i]; i++, usleep(1000000L / 100L)) + libgamma_crtc_set_gamma_ramps16(crtcs[i], *(ramps_saved[i])); for (i = 0; crtcs && crtcs[i]; i++) { - if (clut_state == 2) - libgamma_crtc_set_gamma_ramps16(crtcs[i], *(ramps_saved[i])); libgamma_crtc_free(crtcs[i]); libgamma_gamma_ramps16_free(ramps_red[i]); libgamma_gamma_ramps16_free(ramps_green[i]); @@ -463,6 +466,8 @@ int main(int argc, char* argv[]) fail: saved_errno = errno; + printf("%s\033[?25h\033[H\033[2J", (started && vt) ? "\033]P0000000" : ""); + fflush(stdout); if (!vt) term_clut(); errno = saved_errno; -- cgit v1.2.3-70-g09d2