From: "Lars Nilsson" <lars@quantumchamaeleon.com>
To: "Caml List" <caml-list@pauillac.inria.fr>
Subject: [Caml-list] ocamlopt with external function taking more than 5 params
Date: Tue, 5 Aug 2003 12:50:11 -0400 [thread overview]
Message-ID: <000701c35b71$a29daba0$500010ac@cymfony.com> (raw)
Hi all,
I am wondering if I am doing something wrong, or if I am experiencing a bug.
I am trying to implement a function in C that takes more than 5 parameters
(8 in my real code). For some reason it does not appear that the native code
version is being called properly. If anyone can shed any light on this I
would be very grateful...
The resulting output for the ocamlopt compiled program is
Pointer = 0x3, N = 5
This is of course not exactly what I would expect, since I would really like
to see a valid array of values containing integers.
I am attempting this under RH7.2 Linux, gcc 2.95.3, using both Ocaml 3.06
and the current CVS version, with the same result.
Thanks in advance for any insights,
Lars Nilsson
Quantum Chamaeleon
http://www.quantumchamaeleon.com
[tester.ml]
external tester : int -> int -> int -> int -> int -> int -> int -> int ->
unit = "tester_bytecode" "tester_native"
let _ =
tester 1 2 3 4 5 6 7 8
[c-tester.c]
CAMLprim void tester_bytecode(value a, value b, value c, value d,
value e, value f, value g, value h)
{
CAMLparam5(a, b, c, d, e);
CAMLxparam3(f, g, h);
printf("Doing nothing\n");
CAMLreturn0;
}
CAMLprim void tester_native(value *argv, int argc)
{
CAMLparamN(argv, argc);
printf("Pointer = %p, N = %d\n", argv, argc);
CAMLreturn0;
}
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
next reply other threads:[~2003-08-05 16:40 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-08-05 16:50 Lars Nilsson [this message]
2003-08-05 16:47 ` David Brown
2003-08-05 17:18 ` Pixel
2003-08-07 12:47 ` Damien Doligez
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='000701c35b71$a29daba0$500010ac@cymfony.com' \
--to=lars@quantumchamaeleon.com \
--cc=caml-list@pauillac.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