From 3daf61f605cd98b1a579b66c49616f477a7f5498 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 20 Jun 2011 13:53:45 -0600 Subject: [PATCH] dc clarification on `thread-suspend' --- collects/scribblings/reference/threads.scrbl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/scribblings/reference/threads.scrbl b/collects/scribblings/reference/threads.scrbl index 9c81702c25..451f0f1717 100644 --- a/collects/scribblings/reference/threads.scrbl +++ b/collects/scribblings/reference/threads.scrbl @@ -98,9 +98,9 @@ running. If the thread has terminated or is already suspended, @racket[thread-suspend] has no effect. The thread remains suspended (i.e., it does not execute) until it is resumed with @racket[thread-resume]. If the @tech{current custodian} does not -manage @racket[thd] (and none of its subordinates manages -@racket[thd]), the @exnraise[exn:fail:contract], and the thread is not -suspended.} +solely manage @racket[thd] (i.e., some custodian of @racket[thd] +is not the current custodian or a subordinate), the +@exnraise[exn:fail:contract], and the thread is not suspended.} @defproc[(thread-resume [thd thread?] [benefactor (or/c thread? custodian? #f) #f]) void?]{