From: Eugene Kotlyarov <ekot@narod.ru>
To: caml-list@inria.fr
Subject: [Caml-list] Timeout function
Date: Thu, 31 Oct 2002 21:58:02 +0500 [thread overview]
Message-ID: <13651974775.20021031215802@narod.ru> (raw)
Hello.
I am trying to compile ftp client from cdk under Windows and there is a
problem in the following function:
(*d [timeout time fun arg] applies [fun] to [arg], and returns the
result. [raise Timeout] if there is no result after [time] seconds.
*)
What is the best way of implementing such function under Windows?
(* functions to deal with timouts *)
exception Timeout
let notimer ={ Unix.it_interval=0.0 ; Unix.it_value = 0.0 }
let handler = Sys.Signal_handle
(fun _ ->
Sys.set_signal Sys.sigalrm Sys.Signal_default ;
ignore (Unix.setitimer Unix.ITIMER_REAL notimer);
raise Timeout)
let timeout time f x =
Sys.set_signal Sys.sigalrm handler;
let timer = { Unix.it_interval= 0. ; Unix.it_value = time } in
ignore (Unix.setitimer Unix.ITIMER_REAL timer);
let res =
try
(f x)
with
| e ->
ignore (Unix.setitimer Unix.ITIMER_REAL notimer);
raise e
in
ignore (Unix.setitimer Unix.ITIMER_REAL notimer);
res
--
Best regards,
Eugene mailto:ekot@narod.ru
-------------------
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-10-31 16:59 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=13651974775.20021031215802@narod.ru \
--to=ekot@narod.ru \
--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