ObjFW  Diff

Differences From Artifact [469fa957dd]:

To Artifact [24a798f944]:


131
132
133
134
135
136
137








138
139
140
141
142
+ mutex;

/**
 * Locks the mutex.
 */
- lock;









/**
 * Unlocks the mutex.
 */
- unlock;
@end







>
>
>
>
>
>
>
>





131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
+ mutex;

/**
 * Locks the mutex.
 */
- lock;

/**
 * Tries to lock the mutex and returns a boolean whether the mutex could be
 * acquired.
 *
 * \return A boolean whether the mutex could be acquired
 */
- (BOOL)tryLock;

/**
 * Unlocks the mutex.
 */
- unlock;
@end