From 5706bf3efa8d8262982bbed15fb041e536f56cf2 Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Sat, 7 Oct 2023 14:26:23 +0200 Subject: lib: Wrap pthread_cond_timedwait for NULL abstime We often have the pattern where we NULL-check abstime for pthread_cond_timedwait to call pthread_cond_wait if it is. Added a __timedwait function to wrap this. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- src/irmd/reg/proc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/irmd/reg/proc.h') diff --git a/src/irmd/reg/proc.h b/src/irmd/reg/proc.h index fb11f34f..4c4ace24 100644 --- a/src/irmd/reg/proc.h +++ b/src/irmd/reg/proc.h @@ -28,7 +28,7 @@ #include "utils.h" #include -#include +#include enum proc_state { PROC_NULL = 0, -- cgit v1.2.3