diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-01-12 09:19:34 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2018-01-12 09:19:34 +0000 |
commit | 232ebb0e4586a4e5926456b6f768b7907a45837a (patch) | |
tree | 78adbda9f7c4d8d7d7ff015292d9a85f598148dd /sys/arch/mips64 | |
parent | f32909dcdc7cfe1cdf7bdb1974edbbd35ea2a126 (diff) |
Unify <machine/mutex.h> a bit further.
`mtx_owner' becomes the first field of 'struct mutex' on i386/amd64/arm64.
ok visa@
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r-- | sys/arch/mips64/include/mutex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/mutex.h b/sys/arch/mips64/include/mutex.h index 8ba5052d530..a77a60eadc3 100644 --- a/sys/arch/mips64/include/mutex.h +++ b/sys/arch/mips64/include/mutex.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mutex.h,v 1.3 2018/01/04 11:03:48 mpi Exp $ */ +/* $OpenBSD: mutex.h,v 1.4 2018/01/12 09:19:33 mpi Exp $ */ /* * Copyright (c) 2004 Artur Grabowski <art@openbsd.org> @@ -82,4 +82,4 @@ void __mtx_init(struct mutex *, int); #define MUTEX_LOCK_OBJECT(mtx) (&(mtx)->mtx_lock_obj) #define MUTEX_OLDIPL(mtx) (mtx)->mtx_oldipl -#endif +#endif /* _MACHINE_MUTEX_H_ */ |