mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
added GSdoc comments to class, method, and function declarations; for some classes some comments were already in the source file (not the header), in which case further comments were added here; otherwise comments were put in the headers
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19586 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
095158b3d2
commit
ecfd6ef7da
38 changed files with 2408 additions and 161 deletions
|
@ -85,19 +85,25 @@
|
|||
|
||||
#ifndef NO_GNUSTEP
|
||||
|
||||
/**
|
||||
* Defines some extensions for maximising posting performance - these options
|
||||
* are NOT adjustable for the default notification center.
|
||||
*
|
||||
*/
|
||||
@interface NSNotificationCenter (GNUstep)
|
||||
/*
|
||||
* Extensions for maximising posting performance - these options are
|
||||
* NOT adjustable for the default notification center.
|
||||
*
|
||||
* You can disable locking in a multi-threaded program if you KNOW that only
|
||||
* one thread will ever use the notification center.
|
||||
*
|
||||
|
||||
/**
|
||||
* You can turn on 'immutability' if you KNOW that the posting of a
|
||||
* notification will never result in an attempt to modify the center.
|
||||
* In this case, the center can optimise delivery of notifications.
|
||||
*/
|
||||
- (BOOL) setImmutableInPost: (BOOL)flag;
|
||||
|
||||
/**
|
||||
*
|
||||
* You can disable locking in a multi-threaded program if you KNOW that only
|
||||
* one thread will ever use the notification center.
|
||||
*/
|
||||
- (BOOL) setLockingDisabled: (BOOL)flag;
|
||||
@end
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue