caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: julius <flute@noos.fr>
To: caml-list@inria.fr
Subject: Re: [Caml-list] Segfault using malloc within stubs
Date: Sun, 06 Feb 2005 15:05:29 +0100	[thread overview]
Message-ID: <42062429.4050404@noos.fr> (raw)

Actually, this is just un exemple that illustrates the real function I 
used. We can add some use of the test pointer and result value but it 
changes nothing: in this function you can't do anything that someway 
malloc the test pointer.
As you say it's very weird and much disapointing :)

Julius

PS: In my implementation, test is given to a function that use it to 
stock its result (after malloc it), and result is a caml value pointing 
to some calculus result. The end is same: segfault...

Remi Vanicat wrote:

> On Sun, 06 Feb 2005 08:38:06 +0100, julius <flute@noos.fr> wrote:
>  
>
>> Hello,
>>
>> I have this strange problem with my stubs, I wrote this function but it
>> leads to a segfault:
>>
>> CAMLprim value foo(value v)
>> {
>>    CAMLparam1(v);
>>    CAML(result);
>>    char** test;
>>
>>    test=(char**)malloc(4*sizeof(char*));
>>    CAMLreturn(result);
>> }
>>
>> After much tests, it seems that malloc is not allowed when using Caml
>> data types or when trying to register data to the ocaml garbage
>> collector... But I don't understand why as C heap and OCaml heap are
>> distinct :-/
>>   
>
>
> It seem weird. First of all, mallocs are explicitly allowed in the
> doc. So the problem must be somewhere else. I see that in this code,
> the test pointer is never used, but throw away, and this could lead to
> a memory leak. Also the result variable is never set, so this is
> probably the problem. Try to add a result=Val_unit; somewhere in your
> code to see if the problem goes away. I forget : I don't know what
> CAML(result) mean. Did you want to use CAML_local1(result) ? may be
> this is the problem.
>
>
>  
>


             reply	other threads:[~2005-02-06 14:01 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-02-06 14:05 julius [this message]
2005-02-08 17:51 ` Damien Doligez
2005-02-08 18:42 ` art yerkes
2005-02-25  0:36 Garry Belka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=42062429.4050404@noos.fr \
    --to=flute@noos.fr \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).