git: 024284f3af0a - stable/13 - umtxvar.h: Add missing include
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 27 Feb 2024 10:42:22 UTC
The branch stable/13 has been updated by olce:
URL: https://cgit.FreeBSD.org/src/commit/?id=024284f3af0afa362c504d30eff3950bab779b34
commit 024284f3af0afa362c504d30eff3950bab779b34
Author: Olivier Certner <olce@FreeBSD.org>
AuthorDate: 2024-02-08 20:11:17 +0000
Commit: Olivier Certner <olce@FreeBSD.org>
CommitDate: 2024-02-27 10:41:40 +0000
umtxvar.h: Add missing include
Necessary to have the definition of 'struct timespec'.
No functional change.
Approved by: markj (mentor)
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
(cherry picked from commit bcaa0b4c2bab2866d5ee11c9eb8900a70bdb21e1)
Approved by: emaste (mentor)
---
sys/sys/umtxvar.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sys/sys/umtxvar.h b/sys/sys/umtxvar.h
index 216c7a3e2cd1..647ee2a4650c 100644
--- a/sys/sys/umtxvar.h
+++ b/sys/sys/umtxvar.h
@@ -32,6 +32,8 @@
#ifdef _KERNEL
+#include <sys/_timespec.h>
+
/*
* The umtx_key structure is used by both the Linux futex code and the
* umtx implementation to map userland addresses to unique keys.