-
-
Notifications
You must be signed in to change notification settings - Fork 418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Structure finalisers are broken #2156
Comments
@Praetonus Stupid question: what would be a use case for a |
@dipinhora Any struct data_t
{
// Some members
};
void data_create(data_t* d);
void data_final(data_t* d); struct Data
// Fields equivalent to the C members
new create() =>
@data_create[None](this)
fun _final() =>
@data_final[None](this) |
Makes sense. Thanks. |
General consensus on the sync call is that This of course is subject to anyone coming up with a good use case for making |
This code results in an invalid access to memory at runtime. This is caused by the mechanism that runs finalisers (
final_small
,final_small_freed
andfinal_large
inmem/heap.c
), as it assumes that every object has a type descriptor and tries to access the object's finaliser through it. Since structs don't have type descriptors, this can't work with them.We either need to revert to the old finaliser algorithm (using the GC object map) for structs or to come up with a way to store struct finalisers alongside the finaliser bitmap.
The text was updated successfully, but these errors were encountered: