caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Michel Quercia <quercia@cal.enst.fr>
To: caml-list@Montchapet.ecole
Subject: Re: Extending a list on the OCAML side that is initially allocated on the C side
Date: Mon, 7 Feb 2000 13:30:30 +0000	[thread overview]
Message-ID: <00020714510512.09929@Montchapet> (raw)
In-Reply-To: <3898BCF1.B4FE1971@ibmoto.com>


: I have an OCAML and C function as follows
: 
: **************OCAML side*****************
: let simple_list_test m = m @ [100]
: let _ =
:    Callback.register "simple_list_test" simple_list_test;
: ***********************************************

Your function simple_list_test expects a list argument which is represented in
memory as a linked collection of values.

:    list = (int *) calloc(10, sizeof(int));
:    new_list = call_caml_simple_list_test(list);

This cannot work as you give to "simple_list_test" a C array of ints, not a
linked list as expected by the Ocaml compiler.

Have a look at the reference manual, chapter "Interfacing C with Objective
Caml", section 14.2 "The value type". A list cell is a 3 word object containing
a header, the value of the cell, and a pointer to the next cell.

Here is a way to build a legal 10 element list :

void go()
{
  value list, new_list;
  int i;
  
#define nil Val_int(0)
  
  /* builds a list with the 1..10 numbers */
  for(list = nil, i = 10; i > 0; i--) {
    Begin_roots1(list);
    new_list = alloc(2,0);
    Field(new_list,0) = Val_int(i);
    Field(new_list,1) = list;
    End_roots();
    list = new_list;
  }

  /* now calls simple_list_test */
  new_list = call_caml_simple_list_test(list);

  /* prints the last item */
  for (list = new_list; Field(list,1) != nil; list = Field(list,1));
  printf("%d\n", Int_val(Field(list,0)));
  fflush(stdout);

}

: My understanding ...
: all I have to do is to cast the pointer to a caml 'value' type.

Never cast unless you are absolutely sure the datatypes agree.
--
Michel Quercia
9/11 rue du grand rabbin Haguenauer, 54000 Nancy
http://pauillac.inria.fr/~quercia
mailto:quercia@cal.enst.fr



      reply	other threads:[~2000-02-07 14:32 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-02-02 23:25 nari
2000-02-07 13:30 ` Michel Quercia [this message]

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=00020714510512.09929@Montchapet \
    --to=quercia@cal.enst.fr \
    --cc=caml-list@Montchapet.ecole \
    /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).