git: 50335b1ae4e4 - main - sys/mutex.h: Reorder includes
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 24 Nov 2023 11:59:54 UTC
The branch main has been updated by manu:
URL: https://cgit.FreeBSD.org/src/commit/?id=50335b1ae4e48712f831e85ddfa7b00da0af382c
commit 50335b1ae4e48712f831e85ddfa7b00da0af382c
Author: Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2023-11-24 10:30:09 +0000
Commit: Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2023-11-24 11:59:02 +0000
sys/mutex.h: Reorder includes
Fixes: 2a35f3cdf63d ("sys/mutex.h: Include sys/lock.h instead of sys/_lock.h")
---
sys/sys/mutex.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/sys/mutex.h b/sys/sys/mutex.h
index 750a5e99679a..9fd6663ed75d 100644
--- a/sys/sys/mutex.h
+++ b/sys/sys/mutex.h
@@ -34,8 +34,8 @@
#define _SYS_MUTEX_H_
#include <sys/queue.h>
-#include <sys/_mutex.h>
#include <sys/lock.h>
+#include <sys/_mutex.h>
#ifdef _KERNEL
#include <sys/pcpu.h>