ObjFW  Check-in [3626a9162c]

Overview
Comment:Fix a missing import.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3626a9162cd06551fc8bd374b31a8d40d32e306ab4451aca46ad9d8ae1fd183c
User & Date: js on 2011-10-28 18:02:08
Other Links: manifest | tags
Context
2011-10-28
18:02
Add a test for -[OFString enumerateLinesUsingBlock:]. check-in: db5cdde5db user: js tags: trunk
18:02
Fix a missing import. check-in: 3626a9162c user: js tags: trunk
2011-10-25
00:02
Always release the pool in -[OFStreamObserver observe]. check-in: 95fdb174f6 user: js tags: trunk
Changes

Modified src/OFStreamObserver_kqueue.m from [b5282d84cd] to [c0876509a7].

23
24
25
26
27
28
29

30
31
32
33
34
35
36

#include <sys/types.h>
#include <sys/event.h>
#include <sys/time.h>

#import "OFStreamObserver_kqueue.h"
#import "OFDataArray.h"


#import "OFInitializationFailedException.h"
#import "OFOutOfMemoryException.h"

#define EVENTLIST_SIZE 64

@implementation OFStreamObserver_kqueue







>







23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

#include <sys/types.h>
#include <sys/event.h>
#include <sys/time.h>

#import "OFStreamObserver_kqueue.h"
#import "OFDataArray.h"
#import "OFAutoreleasePool.h"

#import "OFInitializationFailedException.h"
#import "OFOutOfMemoryException.h"

#define EVENTLIST_SIZE 64

@implementation OFStreamObserver_kqueue