ObjFW  Check-in [edaf4a090e]

Overview
Comment:Fix missing underscore in last commit
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 1.1
Files: files | file ages | folders
SHA3-256: edaf4a090ee5be41fd0378bb47c336595986d5ed257d24248871f91e906dcd79
User & Date: js on 2024-07-29 22:19:19
Other Links: branch diff | manifest | tags
Context
2024-08-02
10:52
runtime: Don't overwrite stack arguments on x86 check-in: aa04d7888d user: js tags: 1.1
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: 4bb1e7096e user: js tags: 1.1
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