summaryrefslogtreecommitdiffstats
path: root/freebsd/sys/sys/sx.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-11-15 11:49:09 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-11-16 09:02:28 +0100
commitcc7a8d87e7307db738bf39ab1ca3ce1053f1c163 (patch)
treeed8612c3aa68f879b7bcba9da1b289d785caa71f /freebsd/sys/sys/sx.h
parentRWLOCK(9): Add reader/writer lock implementation (diff)
downloadrtems-libbsd-cc7a8d87e7307db738bf39ab1ca3ce1053f1c163.tar.bz2
SX(9): Implement with reader/writer lock
Diffstat (limited to '')
-rw-r--r--freebsd/sys/sys/sx.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/freebsd/sys/sys/sx.h b/freebsd/sys/sys/sx.h
index 0c95df16..f8eba5e1 100644
--- a/freebsd/sys/sys/sx.h
+++ b/freebsd/sys/sys/sx.h
@@ -44,9 +44,6 @@
#ifdef __rtems__
#define SX_NOINLINE 1
-#define _sx_slock _bsd__sx_xlock
-#define sx_try_slock_ _bsd_sx_try_xlock_
-#define _sx_sunlock _bsd__sx_xunlock
#endif /* __rtems__ */
/*
* In general, the sx locks and rwlocks use very similar algorithms.