Fix configure docs (--enable-lazy-lock --> --disable-lazy-lock).
Fix some style nits. Ignore the jemalloc/bin directory.
This commit is contained in:
parent
d3068c3f46
commit
a162402282
@ -2,6 +2,7 @@ syntax: glob
|
|||||||
|
|
||||||
syntax: regexp
|
syntax: regexp
|
||||||
^jemalloc/autom4te\.cache
|
^jemalloc/autom4te\.cache
|
||||||
|
^jemalloc/bin$
|
||||||
^jemalloc/cfg(hdrs|outputs)\.stamp$
|
^jemalloc/cfg(hdrs|outputs)\.stamp$
|
||||||
^jemalloc/config\.(log|status)$
|
^jemalloc/config\.(log|status)$
|
||||||
^jemalloc/configure$
|
^jemalloc/configure$
|
||||||
|
@ -523,7 +523,7 @@ AC_SUBST([roff_tls])
|
|||||||
|
|
||||||
dnl Enable lazy locking by default.
|
dnl Enable lazy locking by default.
|
||||||
AC_ARG_ENABLE([lazy_lock],
|
AC_ARG_ENABLE([lazy_lock],
|
||||||
[AS_HELP_STRING([--enable-lazy-lock],
|
[AS_HELP_STRING([--disable-lazy-lock],
|
||||||
[Disable lazy locking (always lock, even when single-threaded)])],
|
[Disable lazy locking (always lock, even when single-threaded)])],
|
||||||
[if test "x$enable_lazy_lock" = "xno" ; then
|
[if test "x$enable_lazy_lock" = "xno" ; then
|
||||||
enable_lazy_lock="0"
|
enable_lazy_lock="0"
|
||||||
|
@ -1341,7 +1341,7 @@ pthread_create(pthread_t *restrict thread, const pthread_attr_t *restrict attr,
|
|||||||
pthread_once(&once_control, get_pthread_create_fptr);
|
pthread_once(&once_control, get_pthread_create_fptr);
|
||||||
|
|
||||||
isthreaded = true;
|
isthreaded = true;
|
||||||
return pthread_create_fptr(thread, attr, start_routine, arg);
|
return (pthread_create_fptr(thread, attr, start_routine, arg));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -2426,8 +2426,8 @@ arena_run_comp(arena_chunk_map_t *a, arena_chunk_map_t *b)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Wrap red-black tree macros in functions. */
|
/* Wrap red-black tree macros in functions. */
|
||||||
rb_wrap(static JEMALLOC_UNUSED, arena_run_tree_, arena_run_tree_t, arena_chunk_map_t,
|
rb_wrap(static JEMALLOC_UNUSED, arena_run_tree_, arena_run_tree_t,
|
||||||
link, arena_run_comp)
|
arena_chunk_map_t, link, arena_run_comp)
|
||||||
|
|
||||||
static inline int
|
static inline int
|
||||||
arena_avail_comp(arena_chunk_map_t *a, arena_chunk_map_t *b)
|
arena_avail_comp(arena_chunk_map_t *a, arena_chunk_map_t *b)
|
||||||
|
Loading…
Reference in New Issue
Block a user