<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"><meta name=Generator content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.E-mailStijl17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 70.85pt 70.85pt 70.85pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=NL-BE link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span lang=EN-GB>Hi,<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-GB>I am forking an FFI library for physics simulation on Github (<a href="https://github.com/samvv/Rhipmunk-Physics">https://github.com/samvv/Rhipmunk-Physics</a>) but I got stuck with storing racket objects in the library&#8217;s native structs. From the library&#8217;s website: <a href="http://chipmunk-physics.net/release/Chipmunk-6.x/Chipmunk-6.1.2-API-Reference/group__cp_body.html">http://chipmunk-physics.net/release/Chipmunk-6.x/Chipmunk-6.1.2-API-Reference/group__cp_body.html</a>. Here&#8217;s the part of the code that needs to be changed:<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>(define _cpDataPointer _racket)<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>(define-cstruct _cpBody<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>&nbsp;&nbsp;&nbsp; &#8230;<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>&nbsp;&nbsp;&nbsp; [data _cpDataPointer] ; user-defined data, like a game object<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>&nbsp;&nbsp;&nbsp; &#8230;)<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-GB>In the following test everything seems to work as expected:<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-GB>(define body1 (cpBodyNew 1.0 1.0))<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>(set-cpBody-data! body1 &quot;This is a test&quot;)<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>(display (cpBody-data body1))<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>&gt; &#8220;This is a test&#8221;<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>(set-cpBody-data! body1 (cons 1 2))<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>(display (cpBody-data body1))<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>&gt; (1 . 2)<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-GB>However, when I run the following code:<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-GB>(collect-garbage)<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB>(display (cpBody-data body1))<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-GB>Something goes wrong internally. Sometimes DrRacket crashes, sometimes it returns values like #&lt;bad-value&gt;. I have looked into (malloc-immobile-cell v) and (free-immobile-cell cptr) but I am not sure that fiddling with the memory is such a good idea. Could you please give me any guidelines or point me to a procedure I can use to provide this functionality?<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-GB>Thanks,<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-GB><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-GB>Sam</span><span lang=EN-GB><o:p></o:p></span></p></div></body></html>