caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Jacques Garrigue <garrigue@kurims.kyoto-u.ac.jp>
To: markus@oefai.at
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Native threads under Debian 3.0r0
Date: Wed, 04 Sep 2002 19:15:23 +0900	[thread overview]
Message-ID: <20020904191523M.garrigue@kurims.kyoto-u.ac.jp> (raw)
In-Reply-To: <20020904094432.GA1375@kiefer.ai.univie.ac.at>

From: Markus Mottl <markus@oefai.at>
> 
> There indeed seems to be something broken about threads (at least native
> ones). Things work fine with byte-code and the toplevel, but native
> code + native threads don't.  I have managed to reproduced this problem
> under Linux and Solaris with OCaml 3.06, but also with an older version
> (3.04+10 - 2002-04-18) on an Alpha (Digital Unix).

This behaviour is normal, and I believe documented.
Looking around line 270 in otherlibs/systhreads/posix.c gives the
explanation.
You cannot switch between caml threads just anywhere, you
have to choose a safe place to do that. The way to do that is to raise
a flag requesting a thread change, and wait for the code to actually
release control.
In bytecode "something_to_do" is used, and checked pretty often: at
every function call and every loop iteration.
However, this would mean too much overhead for native code, so
switching is only checked when the GC is called. To make it work even
on slowly allocating programs, the young generation is declared "full"
every once in a while, but there must still be some allocation for it to
happen.

So the answer is: a native code thread should be allocating some
data, otherwise it cannot be interrupted. The problem does not exist
for bytecode.

---------------------------------------------------------------------------
Jacques Garrigue      Kyoto University     garrigue at kurims.kyoto-u.ac.jp
		<A HREF=http://wwwfun.kurims.kyoto-u.ac.jp/~garrigue/>JG</A>


> > $ cat toto.ml
> > open Thread
> > 
> > let _ =
> >   let code1 () =
> > 	let x = ref 0 in
> > 	while true do
> > 	  incr x;
> > 	  Printf.printf "alpha %d\n" !x;
> > 	  flush stdout
> > 	done
> >   in
> >   let thread1 = Thread.create code1 ()
> >   in
> >   while true do
> > 	()
> >   done
> > 
> > compiled with
> > 
> > $ ocamlopt.opt -thread unix.cmxa threads.cmxa toto.ml -o toto
> > 
> > and run as
> > 
> > $ ./toto
> > 
> > give me something like
> > 
> > alpha 0
> > alpha 1
> > alpha 2
> > alpha 3
> > alpha 4
> > alpha 5
> > alpha 6
> > ...
> > 
> > ?
> > 
> > Instead, the program doesn't output anything, and when I hit Ctrl-C,
> > it leaves some processes running, which can only be killed with
> > SIGKILL.
> > 
> > The program works when compiled as bytecode. System info :
> > 
> > $ uname -a
> > Linux gogol 2.4.18 #1 Thu Aug 22 20:42:28 CEST 2002 i586 unknown
> > $ ls -l /lib/libpthread*
> > -rw-r--r--    1 root     root       102172 Apr 28 11:57 /lib/libpthread-0.9.so
> > 
> > However, even in bytecode, when I use the Graphics module, some subprocesses
> > refuse to die when I interrupt the main program.
> > 
> > Any clues ? Thanks very much.
> > --
> > Berke Durak
-------------------
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


  reply	other threads:[~2002-09-04 10:15 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-03 23:03 Berke Durak
2002-09-04  9:44 ` Markus Mottl
2002-09-04 10:15   ` Jacques Garrigue [this message]
2002-09-04 10:39     ` Olivier Andrieu
2002-09-04 13:01     ` Markus Mottl
2002-09-04 15:14       ` Berke Durak
2002-09-04 23:38         ` Jacques Garrigue
2002-09-04 14:38 ` Sven LUTHER
2002-09-05  9:17   ` Stefano Zacchiroli
2002-09-05 10:42     ` Sven LUTHER
2002-09-05 11:37       ` Stefano Zacchiroli

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=20020904191523M.garrigue@kurims.kyoto-u.ac.jp \
    --to=garrigue@kurims.kyoto-u.ac.jp \
    --cc=caml-list@inria.fr \
    --cc=markus@oefai.at \
    /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).