mirror of
https://github.com/darlinghq/darling-libobjc2.git
synced 2024-11-23 20:29:50 +00:00
8d954d1cb8
correct time. This fixes the intermittent problems when using libdispatch from LanguageKit, among other things.
48 lines
1.0 KiB
C
48 lines
1.0 KiB
C
#include "visibility.h"
|
|
#include "objc/runtime.h"
|
|
#include "gc_ops.h"
|
|
#include "class.h"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
static id allocate_class(Class cls, size_t extraBytes)
|
|
{
|
|
intptr_t *addr = calloc(cls->instance_size + extraBytes + sizeof(intptr_t), 1);
|
|
return (id)(addr + 1);
|
|
}
|
|
|
|
static void free_object(id obj)
|
|
{
|
|
free((void*)(((intptr_t*)obj) - 1));
|
|
}
|
|
|
|
static void *alloc(size_t size)
|
|
{
|
|
return calloc(size, 1);
|
|
}
|
|
|
|
void objc_registerThreadWithCollector(void) {}
|
|
void objc_unregisterThreadWithCollector(void) {}
|
|
void objc_assertRegisteredThreadWithCollector() {}
|
|
|
|
PRIVATE struct gc_ops gc_ops_none =
|
|
{
|
|
.allocate_class = allocate_class,
|
|
.free_object = free_object,
|
|
.malloc = alloc,
|
|
.free = free
|
|
};
|
|
PRIVATE struct gc_ops *gc = &gc_ops_none;
|
|
|
|
PRIVATE BOOL isGCEnabled = NO;
|
|
|
|
#ifndef ENABLE_GC
|
|
PRIVATE void enableGC(BOOL exclusive)
|
|
{
|
|
fprintf(stderr, "Attempting to enable garbage collection, but your"
|
|
"Objective-C runtime was built without garbage collection"
|
|
"support\n");
|
|
abort();
|
|
}
|
|
#endif
|