ObjFW  Check-in [c9bf16250c]

Overview
Comment:Fix missing underscore in last commit
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: c9bf16250c149062b9a0e69487a93cca9980fbb7470f625242bffc56611b5286
User & Date: js on 2024-07-29 22:19:08
Other Links: manifest | tags
Context
2024-08-02
10:52
runtime: Don't overwrite stack arguments on x86 check-in: 3e76fc01af user: js tags: trunk
2024-07-29
22:19
Fix missing underscore in last commit check-in: edaf4a090e user: js tags: 1.1
22:19
Fix missing underscore in last commit check-in: c9bf16250c user: js tags: trunk
19:41
-[OFKernelEventObserver cancel]: Handle EINTR check-in: ed598fd848 user: js tags: trunk
Changes

Modified src/OFKernelEventObserver.m from [9e9d5309f1] to [370fb61e6e].

274
275
276
277
278
279
280
281

282
283
284
285
286
287
288
289

290
291
292
293
274
275
276
277
278
279
280

281
282
283
284
285
286
287
288

289
290
291
292
293







-
+







-
+




	} while (true);
#elif defined(OF_WII)
	do {
		if (sendto(_cancelFD[1], "", 1, 0,
		    (struct sockaddr *)&_cancelAddr, 8) == 1)
			break;

		OFEnsure(OFSocketErrNo() == EINTR);
		OFEnsure(_OFSocketErrNo() == EINTR);
	} while (true);
#else
	do {
		if (sendto(_cancelFD[1], (void *)"", 1, 0,
		    (struct sockaddr *)&_cancelAddr, sizeof(_cancelAddr)) == 1)
			break;

		OFEnsure(OFSocketErrNo() == EINTR);
		OFEnsure(_OFSocketErrNo() == EINTR);
	} while (true);
#endif
}
@end