From ea351a7b52430de88007bf16f354a132da311c5b Mon Sep 17 00:00:00 2001 From: Qi Wang Date: Thu, 23 Jan 2020 16:05:37 -0800 Subject: [PATCH] Fix syntax errors in doc for thread.idle. --- doc/jemalloc.xml.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/jemalloc.xml.in b/doc/jemalloc.xml.in index b0a3f6cf..802c64ad 100644 --- a/doc/jemalloc.xml.in +++ b/doc/jemalloc.xml.in @@ -1669,10 +1669,10 @@ malloc_conf = "xmalloc:true";]]> This is not intended to be a general-purpose background activity mechanism, and threads should not wake up multiple times solely to call it. Rather, a thread waiting for a task should do a timed wait first, - call thread.idle if - no task appears in the timeout interval, and then do an untimed wait. + call thread.idle + if no task appears in the timeout interval, and then do an untimed wait. For such a background activity mechanism, see - background_thread. + background_thread.