ObjFW  Check-in [d6709240fd]

Overview
Comment:OFRunLoop: Make of_run_loop_mode_default const
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d6709240fd2c97a64f0f114c49cce16b0955b3a83d948259696c24a7056265f8
User & Date: js on 2020-06-20 13:56:21
Other Links: manifest | tags
Context
2020-06-20
15:36
Add missing documentation check-in: 7d71c669ec user: js tags: trunk
13:56
OFRunLoop: Make of_run_loop_mode_default const check-in: d6709240fd user: js tags: trunk
2020-06-16
21:46
Don't use utimes() on AmigaOS check-in: 137dc2107d user: js tags: trunk
Changes

Modified src/OFRunLoop.h from [d9a3da87f2] to [b5257ff2c7].

45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

#ifdef __cplusplus
extern "C" {
#endif
/*!
 * @brief The default mode for an OFRunLoop.
 */
extern of_run_loop_mode_t of_run_loop_mode_default;
#ifdef __cplusplus
}
#endif

/*!
 * @class OFRunLoop OFRunLoop.h ObjFW/OFRunLoop.h
 *







|







45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

#ifdef __cplusplus
extern "C" {
#endif
/*!
 * @brief The default mode for an OFRunLoop.
 */
extern const of_run_loop_mode_t of_run_loop_mode_default;
#ifdef __cplusplus
}
#endif

/*!
 * @class OFRunLoop OFRunLoop.h ObjFW/OFRunLoop.h
 *

Modified src/OFRunLoop.m from [8701d2b9f0] to [1ed99b4d7a].

41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#import "OFSortedList.h"
#import "OFTimer.h"
#import "OFTimer+Private.h"
#import "OFDate.h"

#import "OFObserveFailedException.h"

of_run_loop_mode_t of_run_loop_mode_default = @"of_run_loop_mode_default";
static OFRunLoop *mainRunLoop = nil;

@interface OFRunLoopState: OFObject
#ifdef OF_HAVE_SOCKETS
    <OFKernelEventObserverDelegate>
#endif
{







|







41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#import "OFSortedList.h"
#import "OFTimer.h"
#import "OFTimer+Private.h"
#import "OFDate.h"

#import "OFObserveFailedException.h"

const of_run_loop_mode_t of_run_loop_mode_default = @"of_run_loop_mode_default";
static OFRunLoop *mainRunLoop = nil;

@interface OFRunLoopState: OFObject
#ifdef OF_HAVE_SOCKETS
    <OFKernelEventObserverDelegate>
#endif
{