ObjFW  Diff

Differences From Artifact [c9a34f66b3]:

To Artifact [ed43022176]:


39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
};

@implementation OFStreamSelectObserver
- init
{
	self = [super init];

	@try {
		FD_ZERO(&readFDs);
		FD_ZERO(&writeFDs);

		FD_SET(cancelFD[0], &readFDs);
		nFDs = cancelFD[0] + 1;
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;
}

- (void)_addStream: (OFStream*)stream
	 withFDSet: (fd_set*)FDSet
{







<
|
|

|
|
<
<
<
<







39
40
41
42
43
44
45

46
47
48
49
50




51
52
53
54
55
56
57
};

@implementation OFStreamSelectObserver
- init
{
	self = [super init];


	FD_ZERO(&readFDs);
	FD_ZERO(&writeFDs);

	FD_SET(cancelFD[0], &readFDs);
	nFDs = cancelFD[0] + 1;





	return self;
}

- (void)_addStream: (OFStream*)stream
	 withFDSet: (fd_set*)FDSet
{