Overview
| Comment: | OFRunLoop: Fix missing imports |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | 0.90 |
| Files: | files | file ages | folders |
| SHA3-256: |
b641d5c17b4f3afa46cc4f00ffceec51 |
| User & Date: | js on 2017-08-01 12:10:52 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-08-01
| ||
| 13:42 | Restore the ChangeLog (check-in: 43fbb9455b user: js tags: 0.90) | |
| 12:10 | OFRunLoop: Fix missing imports (check-in: b641d5c17b user: js tags: 0.90) | |
|
2017-07-31
| ||
| 11:45 | OFRunLoop: Ignore EINTR (check-in: 5bab29322e user: js tags: 0.90) | |
Changes
Modified src/OFRunLoop.m from [208fa9c8e0] to [2bcc651795].
| ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | + + + |
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include "config.h"
#include <assert.h>
#include <errno.h>
#import "OFRunLoop.h"
#import "OFRunLoop+Private.h"
#import "OFDictionary.h"
#ifdef OF_HAVE_SOCKETS
# import "OFKernelEventObserver.h"
#endif
#import "OFThread.h"
#ifdef OF_HAVE_THREADS
# import "OFMutex.h"
# import "OFCondition.h"
#endif
#import "OFSortedList.h"
#import "OFTimer.h"
#import "OFTimer+Private.h"
#import "OFDate.h"
#import "OFObserveFailedException.h"
static OFRunLoop *mainRunLoop = nil;
#ifdef OF_HAVE_SOCKETS
@interface OFRunLoop_QueueItem: OFObject
{
@public
|
| ︙ |