11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#import <objc/objc.h>
#import "threading.h"
/// \cond internal
struct locks_s {
id obj;
size_t count;
|
>
>
>
|
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#ifdef OF_OBJFW_RUNTIME
# import <objfw-rt.h>
#else
# import <objc/objc.h>
#endif
#import "threading.h"
/// \cond internal
struct locks_s {
id obj;
size_t count;
|