From 59964cf828555c4c597183a16f15d7638a445ea9 Mon Sep 17 00:00:00 2001 From: nova Date: Sat, 23 Aug 2025 23:21:30 +0200 Subject: [PATCH] moved left and rigth thread signaling into thread_mid --- main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.c b/main.c index 35dba7e..5649b92 100644 --- a/main.c +++ b/main.c @@ -79,9 +79,7 @@ int main(){ } if (status & STATUS_RUN_BACKEND) { pthread_cond_signal(&cond_top); - pthread_cond_signal(&cond_lft); pthread_cond_signal(&cond_mid); - pthread_cond_signal(&cond_rgt); pthread_cond_signal(&cond_btm); status &= ~(STATUS_RUN_BACKEND); status |= STATUS_UPDATE_SCREEN_0;