Differences From Artifact [d8155e4574]:
- File
src/runtime/arc.m
— part of check-in
[aeb403a1ed]
at
2020-10-10 14:27:37
on branch trunk
— OFObject: Change type of -[hash] to unsigned long
The internal hash is still 32 bit in most places, but this way, it is at
least not baked into the API and ABI and can be upgraded later, should
that ever be necessary. (user: js, size: 5535) [annotate] [blame] [check-ins using]
To Artifact [7f174d7d34]:
- File src/runtime/arc.m — part of check-in [f2fe8f96d5] at 2020-01-02 22:16:48 on branch trunk — Move autorelease pools to runtime (user: js, size: 5530) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
30 31 32 33 34 35 36 | }; static struct objc_hashtable *hashtable; #ifdef OF_HAVE_THREADS static of_spinlock_t spinlock; #endif | | | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
};
static struct objc_hashtable *hashtable;
#ifdef OF_HAVE_THREADS
static of_spinlock_t spinlock;
#endif
static uint32_t
hash(const void *object)
{
return (uint32_t)(uintptr_t)object;
}
static bool
equal(const void *object1, const void *object2)
|
| ︙ | ︙ |