Differences From Artifact [4833385eee]:
- File src/OFObject.m — part of check-in [19236ddfe7] at 2021-05-02 09:25:55 on branch trunk — A few more missed renames (user: js, size: 27704) [annotate] [blame] [check-ins using] [more...]
To Artifact [77711da280]:
- File
src/OFObject.m
— part of check-in
[3c88df0ce4]
at
2021-05-09 14:45:19
on branch amiga-library
— Merge trunk into branch "amiga-library"
All necessary changes to adjust for the changes made in trunk are
included in the merge commit. (user: js, size: 27791) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
#define PRE_IVARS ((struct PreIvars *)(void *)((char *)self - PRE_IVARS_ALIGN))
static struct {
Class isa;
} allocFailedException;
unsigned long OFHashSeed;
void *
OFAllocMemory(size_t count, size_t size)
{
void *pointer;
if OF_UNLIKELY (count == 0 || size == 0)
| > > > > > > > > | 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
#define PRE_IVARS ((struct PreIvars *)(void *)((char *)self - PRE_IVARS_ALIGN))
static struct {
Class isa;
} allocFailedException;
unsigned long OFHashSeed;
#ifdef OF_AMIGAOS
unsigned long *
OFHashSeedRef(void)
{
return &OFHashSeed;
}
#endif
void *
OFAllocMemory(size_t count, size_t size)
{
void *pointer;
if OF_UNLIKELY (count == 0 || size == 0)
|
| ︙ | ︙ |