Differences From Artifact [779ee8fb5d]:
- File src/runtime/morphos-clib.h — part of check-in [7f83956d3e] at 2020-01-16 01:23:36 on branch trunk — Fix compilation on MorphOS (user: js, size: 3771) [annotate] [blame] [check-ins using]
To Artifact [cfb2b6af7e]:
- File
src/runtime/morphos-clib.h
— part of check-in
[49aee5736e]
at
2020-01-25 20:04:54
on branch trunk
— tlskey.m: Use hashtable from runtime on AmigaOS
tlskey.m used OFMapTable only on AmigaOS. This became a problem when
autorelease pools were moved into the runtime, as autorelease pools use
TLS. The build then broke, as there suddenly was a dependency from the
runtime on ObjFW.This now uses the hashtable from the runtime and also no longer uses
OFList, thus fixing the build. As we always use the runtime on AmigaOS
anyway, this is fine. (user: js, size: 4248) [annotate] [blame] [check-ins using] [more...]
| 1 2 3 4 5 6 7 8 9 | - + - |
|
| ︙ | |||
75 76 77 78 79 80 81 | 74 75 76 77 78 79 80 81 82 83 84 85 86 | + + + + + + | objc_property_t *glue_class_copyPropertyList(Class, unsigned int *); const char *glue_property_getName(objc_property_t); char *glue_property_copyAttributeValue(objc_property_t, const char *); void *glue_objc_destructInstance(id); void *glue_objc_autoreleasePoolPush(void); void glue_objc_autoreleasePoolPop(void *); id glue__objc_rootAutorelease(id); /* The following functions are private! Don't use! */ struct objc_hashtable *glue_objc_hashtable_new(objc_hashtable_hash_func hash, objc_hashtable_equal_func equal, uint32_t size); void glue_objc_hashtable_set(struct objc_hashtable *table, const void *key, const void *object); void *glue_objc_hashtable_get(struct objc_hashtable *table, const void *key); void glue_objc_hashtable_delete(struct objc_hashtable *table, const void *key); void glue_objc_hashtable_free(struct objc_hashtable *table); |