From 2babb937df9a9a61a432980fb667b7da8388b7d6 Mon Sep 17 00:00:00 2001 From: Richard Frith-Macdonald Date: Sun, 6 Apr 2003 07:21:59 +0000 Subject: [PATCH] Document update git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16373 72102866-910b-0410-8b05-ffd578937521 --- Source/NSThread.m | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Source/NSThread.m b/Source/NSThread.m index e47542ef9..d68a5cfef 100644 --- a/Source/NSThread.m +++ b/Source/NSThread.m @@ -804,8 +804,13 @@ static NSDate *theFuture; * and anObject are both retained until the method is performed. *

*

The selector is performed when the runloop of the main thread next - * runs in one of the modes specified in anArray. if there are no modes in - * anArray, the method has no effect and simply returns immediately. + * runs in one of the modes specified in anArray.
+ * Where this method has been called more than once before the runloop + * of the main thread runs in the required mode, the order in which the + * 'perform' operations in the main thread is done is the same as that + * in which they were added.
+ * If there are no modes in anArray, + * the method has no effect and simply returns immediately. *

*

The argument aFlag specifies whether the method should wait until * the selector has been performed before returning.