Hendrik Skubch wrote: > Hi all! > > I ran across a segmentation fault in eclipse when trying to store an > atom passed through the C embedding interface in a named store. I haven't tried to ruin it, but from inspection I think the mistake is here > pword goal = ec_term(ec_did("test",1),ec_term(ec_did("dummy",0))); ec_term() is only for constructing compound terms, but you are trying to construct an atom. That should be written as pword goal = ec_term(ec_did("test",1),ec_atom(ec_did("dummy",0))); Not sure why you don't get an error message, I'll check that. -- JoachimReceived on Thu May 12 2011 - 01:59:02 CEST
This archive was generated by hypermail 2.2.0 : Thu Feb 02 2012 - 02:31:58 CET