summaryrefslogtreecommitdiff
path: root/freebsd/sys/sys/lockmgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'freebsd/sys/sys/lockmgr.h')
-rw-r--r--freebsd/sys/sys/lockmgr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/freebsd/sys/sys/lockmgr.h b/freebsd/sys/sys/lockmgr.h
index c85c39bd..4c3a272a 100644
--- a/freebsd/sys/sys/lockmgr.h
+++ b/freebsd/sys/sys/lockmgr.h
@@ -73,7 +73,10 @@ void _lockmgr_assert(struct lock *lk, int what, const char *file, int line);
#endif
void _lockmgr_disown(struct lock *lk, const char *file, int line);
+void lockallowrecurse(struct lock *lk);
+void lockallowshare(struct lock *lk);
void lockdestroy(struct lock *lk);
+void lockdisablerecurse(struct lock *lk);
void lockinit(struct lock *lk, int prio, const char *wmesg, int timo,
int flags);
#ifdef DDB
@@ -144,9 +147,6 @@ _lockmgr_args_rw(struct lock *lk, u_int flags, struct rwlock *ilk,
#define LK_QUIET 0x000020
#define LK_ADAPTIVE 0x000040
-/* LK_EXSLPFAIL to follow, even if not used in lockinit() */
-#define LK_EXSLPFAIL 0x000080
-
/*
* Additional attributes to be used in lockmgr().
*/