You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The c structs are generated without specifying #:malloc-mode 'atomic-interior, so the 'atomic will be used by default. This is problematic as structs allocated via the corresponding Make- functions may be moved in memory during GC cycles. This can cause random hard to debug driver-specific crashes as there is no guarantee that a driver is done with an application supplied pointer after a given API call returns.
The text was updated successfully, but these errors were encountered:
I also want to double down on the gratitude because I experienced segfaults in debug layer callbacks without knowing why. You may very well have solved that just now then :)
The c structs are generated without specifying
#:malloc-mode 'atomic-interior
, so the'atomic
will be used by default. This is problematic as structs allocated via the correspondingMake-
functions may be moved in memory during GC cycles. This can cause random hard to debug driver-specific crashes as there is no guarantee that a driver is done with an application supplied pointer after a given API call returns.The text was updated successfully, but these errors were encountered: