@@ -13,11 +13,11 @@ #import "OFList.h" #import "threading.h" /** - * A Thread Local Storage key. + * \brief A class for Thread Local Storage keys. */ @interface OFTLSKey: OFObject { @public of_tlskey_t key; @@ -50,21 +50,20 @@ */ - initWithDestructor: (void(*)(id))destructor; @end /** - * The OFThread class provides portable threads. + * \brief A class which provides portable threads. * * To use it, you should create a new class derived from it and reimplement * main. */ @interface OFThread: OFObject { id object; of_thread_t thread; BOOL running; - @public id retval; } /** @@ -116,11 +115,11 @@ */ - join; @end /** - * A class for creating mutual exclusions. + * \brief A class for creating mutual exclusions. */ @interface OFMutex: OFObject { of_mutex_t mutex; }