summaryrefslogtreecommitdiff
path: root/freebsd/sys/sys/_mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/sys/sys/_mutex.h')
-rw-r--r--freebsd/sys/sys/_mutex.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/freebsd/sys/sys/_mutex.h b/freebsd/sys/sys/_mutex.h
index 5252aee1..418b62b4 100644
--- a/freebsd/sys/sys/_mutex.h
+++ b/freebsd/sys/sys/_mutex.h
@@ -32,9 +32,6 @@
#ifndef _SYS__MUTEX_H_
#define _SYS__MUTEX_H_
-#ifdef __rtems__
-#include <machine/rtems-bsd-mutex.h>
-#endif /* __rtems__ */
#include <machine/param.h>
@@ -51,8 +48,6 @@ struct mtx {
struct lock_object lock_object; /* Common lock properties. */
#ifndef __rtems__
volatile uintptr_t mtx_lock; /* Owner and flags. */
-#else /* __rtems__ */
- rtems_bsd_mutex mutex;
#endif /* __rtems__ */
};