summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/include/machine/rtems-bsd-muteximpl.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-06 14:55:56 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-06 14:55:56 +0200
commit58c1bf6b5d540abc3273f618ed2199376d320a40 (patch)
tree258097e9b5224078857f426ec7bb9bac33ad0a0a /rtemsbsd/include/machine/rtems-bsd-muteximpl.h
parentrtems-bsd-mutex: Fix mtx_destroy() (diff)
downloadrtems-libbsd-58c1bf6b5d540abc3273f618ed2199376d320a40.tar.bz2
rtems-bsd-mutex: Update due to API changes
Diffstat (limited to 'rtemsbsd/include/machine/rtems-bsd-muteximpl.h')
-rw-r--r--rtemsbsd/include/machine/rtems-bsd-muteximpl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtemsbsd/include/machine/rtems-bsd-muteximpl.h b/rtemsbsd/include/machine/rtems-bsd-muteximpl.h
index 98e9974a..bbf06377 100644
--- a/rtemsbsd/include/machine/rtems-bsd-muteximpl.h
+++ b/rtemsbsd/include/machine/rtems-bsd-muteximpl.h
@@ -57,7 +57,7 @@ static inline void
rtems_bsd_mutex_init(struct lock_object *lock, rtems_bsd_mutex *m,
struct lock_class *class, const char *name, const char *type, int flags)
{
- _Thread_queue_Initialize(&m->queue, THREAD_QUEUE_DISCIPLINE_PRIORITY);
+ _Thread_queue_Initialize(&m->queue);
m->owner = NULL;
m->nest_level = 0;