Differences From Artifact [37d44845c9]:
- File src/OFObject.m — part of check-in [ed7377d854] at 2020-07-12 11:17:07 on branch trunk — Fix missing include for getrandom() (user: js, size: 31454) [annotate] [blame] [check-ins using]
To Artifact [bf40f65e77]:
- File src/OFObject.m — part of check-in [aba47e526e] at 2020-07-12 18:00:41 on branch tagged-pointers — Merge trunk into branch "tagged-pointers" (user: js, size: 31599) [annotate] [blame] [check-ins using] [more...]
| ︙ | |||
329 330 331 332 333 334 335 336 337 338 339 340 341 342 | 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 | + + + + + |
#endif
objc_setEnumerationMutationHandler(enumerationMutationHandler);
do {
of_hash_seed = of_random32();
} while (of_hash_seed == 0);
#ifdef OF_OBJFW_RUNTIME
objc_setTaggedPointerSecret(sizeof(uintptr_t) == 4
? (uintptr_t)of_random32() : (uintptr_t)of_random64());
#endif
}
+ (void)unload
{
}
+ (void)initialize
|
| ︙ |