Browse thread
[Caml-list] OS X: Trouble with threads + execv
- Nathaniel Gray
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Nathaniel Gray <n8gray@c...> |
| Subject: | [Caml-list] OS X: Trouble with threads + execv |
Hello, I'm seeing some confusing behavior on OS X (10.3.4) relating to pthreads and the execv family of calls. It appears that when the scheduler thread (from otherlibs/systhreads/thread_posix.ml) is running, any call to execv will fail with "Operation not supported." The same applies to execvp, execve, and execvpe. Here's a small test program: --- begin testing.ml --- open Unix let args = [| "ocamlc.opt"; "-v" |];; handle_unix_error (execv "/usr/local/bin/ocamlc.opt") args;; --- End testing.ml --- I build with: ocamlopt -thread unix.cmxa threads.cmxa testing.ml -linkall The result: [n8gray@golux tmp]$ a.out a.out: "execv" failed on "/usr/local/bin/ocamlc.opt": Operation not supported If I build the program without linking to threads.cmxa then it works as expected. Is this expected behavior? Thanks, -n8 -- >>>-- Nathaniel Gray -- Caltech Computer Science ------> >>>-- Mojave Project -- http://mojave.cs.caltech.edu --> ------------------- 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