some cleanups and clarifications to documentation just added, suggested by Alexander Malmberg

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19817 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adrian Robert 2004-08-02 18:10:58 +00:00
parent 1e37b28748
commit 966b2cb0c9
10 changed files with 51 additions and 30 deletions

View file

@ -113,8 +113,10 @@ GS_EXPORT void GSUnregisterCurrentThread (void);
/**
* Notification posted the first time a new [NSThread] is created or a
* separate thread from another library is registered in an application.
* Before such a notification has been posted you can assume the application
* is in single-threaded mode and locks are not necessary.
* (The initial thread that a program starts with does <em>not</em>
* post this notification.) Before such a notification has been posted you
* can assume the application is in single-threaded mode and locks are not
* necessary. Afterwards multiple threads <em>may</em> be running.
*/
GS_EXPORT NSString *NSWillBecomeMultiThreadedNotification;
#define NSBecomingMultiThreaded NSWillBecomeMultiThreadedNotification
@ -129,7 +131,8 @@ GS_EXPORT NSString *NSThreadWillExitNotification;
#ifndef NO_GNUSTEP
/**
* Notification posted (only in GNUstep) whenever a new thread is started up.
* Notification posted whenever a new thread is started up. This is a
* GNUstep extension.
*/
GS_EXPORT NSString *NSThreadDidStartNotification;