summaryrefslogtreecommitdiff
path: root/include/uthread.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-05-01 10:48:24 -0600
committerTom Rini <trini@konsulko.com>2025-05-01 10:48:24 -0600
commit152fa1b7fd6b43c727e322aec7a870a33865a248 (patch)
treeb5ad2c1af26bd0e106c96c5d717178e757ccdcf1 /include/uthread.h
parent98a898e58499c78245e4fe36ee404b1b1208e32b (diff)
parentc0546426724099d94a497ea11ad79862daf37767 (diff)
Merge tag 'efi-2025-07-rc2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2025-07-rc2 CI: * https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/26025 Documentation: * ti: update bash code-block directives to prompt * ti: k3: add language for code-block directive * correct uthread inline documentation UEFI: * correctly handle EFI FIT images without initrd * pass kernel load address not entry point for EFI FIT images Other: * boot:let BOOTSTAGE_RECORD_COUNT default to 50
Diffstat (limited to 'include/uthread.h')
-rw-r--r--include/uthread.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/uthread.h b/include/uthread.h
index 89fa552a6f6..11a19aa9488 100644
--- a/include/uthread.h
+++ b/include/uthread.h
@@ -51,7 +51,10 @@ struct uthread {
};
/**
- * Internal state of a struct uthread_mutex
+ * enum uthread_mutex_state - internal state of a struct uthread_mutex
+ *
+ * @UTHREAD_MUTEX_UNLOCKED: mutex has no owner
+ * @UTHREAD_MUTEX_LOCKED: mutex has one owner
*/
enum uthread_mutex_state {
UTHREAD_MUTEX_UNLOCKED = 0,
@@ -59,7 +62,9 @@ enum uthread_mutex_state {
};
/**
- * Uthread mutex
+ * struct uthread_mutex - a mutex object
+ *
+ * @state: the internal state of the mutex
*/
struct uthread_mutex {
enum uthread_mutex_state state;