summaryrefslogtreecommitdiff
path: root/build_posix/aclocal
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2011-11-03 23:48:27 +1100
committerMichael Cahill <michael.cahill@wiredtiger.com>2011-11-03 23:48:27 +1100
commit455cfc40f7239a3e93148704033572229f03f2c1 (patch)
tree71d4c307182b6e4782130624312af4e1b38c96ca /build_posix/aclocal
parent7eaba73eac3283c92b2c757efcd5c907d72301e0 (diff)
downloadmongo-455cfc40f7239a3e93148704033572229f03f2c1.tar.gz
Remove the workQ -- have application threads notify the read and eviction servers directly.
Diffstat (limited to 'build_posix/aclocal')
-rw-r--r--build_posix/aclocal/options.m410
1 files changed, 10 insertions, 0 deletions
diff --git a/build_posix/aclocal/options.m4 b/build_posix/aclocal/options.m4
index 74e37f56e56..bb4ba217055 100644
--- a/build_posix/aclocal/options.m4
+++ b/build_posix/aclocal/options.m4
@@ -72,6 +72,16 @@ no) db_cv_enable_verbose=no;;
esac
AC_MSG_RESULT($db_cv_enable_verbose)
+AH_TEMPLATE(HAVE_WORKQ, [Define to 1 to enable the workQ thread.])
+AC_MSG_CHECKING(if --enable-workq option specified)
+AC_ARG_ENABLE(workq,
+ [AC_HELP_STRING([--enable-workq],
+ [Configure the workQ thread.])], r=$enableval, r=no)
+case "$r" in
+yes) AC_DEFINE(HAVE_WORKQ);;
+esac
+AC_MSG_RESULT($r)
+
AC_MSG_CHECKING(if --with-spinlock option specified)
AH_TEMPLATE(SPINLOCK_TYPE, [Spinlock type from mutex.h.])
AC_ARG_WITH(spinlock,