Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/58990 )
Change subject: lib/thread: Switch to using types.h ......................................................................
lib/thread: Switch to using types.h
thread_mutex uses bool.
BUG=b:179699789 TEST=Build guybrush
Signed-off-by: Raul E Rangel rrangel@chromium.org Change-Id: Id26b37d3e38852d72fcb6ff07ed578b0879e55dd --- M src/include/thread.h 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/90/58990/1
diff --git a/src/include/thread.h b/src/include/thread.h index 62c6283..19b69fa 100644 --- a/src/include/thread.h +++ b/src/include/thread.h @@ -5,7 +5,7 @@ #include <arch/cpu.h> #include <bootstate.h> #include <commonlib/bsd/cb_err.h> -#include <stdint.h> +#include <types.h>
struct thread_mutex { bool locked;