aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_emul.h
diff options
context:
space:
mode:
authorAlexander Leidinger <netchild@FreeBSD.org>2007-01-07 19:00:38 +0000
committerAlexander Leidinger <netchild@FreeBSD.org>2007-01-07 19:00:38 +0000
commit1c65504ca8bb2d3696e328120de762d764e10cdf (patch)
tree2e7e3c97c0aff026ed87ffff86d825e74404ebfe /sys/compat/linux/linux_emul.h
parent4c207b6fd246f8ac516b54d779d91aa92ec39592 (diff)
downloadsrc-1c65504ca8bb2d3696e328120de762d764e10cdf.tar.gz
src-1c65504ca8bb2d3696e328120de762d764e10cdf.zip
MFp4 (112498):
Rename the locking flags to EMUL_DOLOCK and EMUL_DONTLOCK to prevent confusion. Submitted by: rdivacky
Notes
Notes: svn path=/head/; revision=165867
Diffstat (limited to 'sys/compat/linux/linux_emul.h')
-rw-r--r--sys/compat/linux/linux_emul.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_emul.h b/sys/compat/linux/linux_emul.h
index 2f9fc98930d2..d1e82ebe4683 100644
--- a/sys/compat/linux/linux_emul.h
+++ b/sys/compat/linux/linux_emul.h
@@ -66,8 +66,8 @@ struct linux_emuldata *em_find(struct proc *, int locked);
#define EMUL_SHARED_WUNLOCK(l) sx_xunlock(l)
/* for em_find use */
-#define EMUL_LOCKED 1
-#define EMUL_UNLOCKED 0
+#define EMUL_DOLOCK 1
+#define EMUL_DONTLOCK 0
int linux_proc_init(struct thread *, pid_t, int);
void linux_proc_exit(void *, struct proc *);