caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Xavier Leroy <xavier.leroy@inria.fr>
To: Nick Name <nick.name@inwind.it>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Thread.delay, Unix.select, Unix.gettimeofday, Sys.time together?
Date: Mon, 9 Jun 2003 18:19:08 +0200	[thread overview]
Message-ID: <20030609181908.C22874@pauillac.inria.fr> (raw)
In-Reply-To: <20030607141702.28d583c6.nick.name@inwind.it>; from nick.name@inwind.it on Sat, Jun 07, 2003 at 02:17:02PM +0200

> If I put the delay into the cycle, I can't get less than 1/100 of second
> delay, on any machine I do this test. Is there a portable function that
> can do a shorter delay, say 1/1000 of second ad least?

Not in a portable way, I'm afraid.  Most Unix kernels round delays up
to the next clock tick, and use clocks of 50, 60 or 100 Hz.
Linux/Alpha is an exception, with a 1000 Hz (or 1024?) clock.

Under Linux, you could use Unix.select() on /dev/rtc.  This device can be
programmed to generate ticks with a frequency between 1 Hz and 8192 Hz
in powers of 2.  Check Documentation/rtc.txt in the Linux source tree
for more details.

- Xavier Leroy

-------------------
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


      parent reply	other threads:[~2003-06-09 16:19 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-06-07 12:17 Nick Name
2003-06-07 13:31 ` Nicolas George
2003-06-09 16:19 ` Xavier Leroy [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=20030609181908.C22874@pauillac.inria.fr \
    --to=xavier.leroy@inria.fr \
    --cc=caml-list@inria.fr \
    --cc=nick.name@inwind.it \
    /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).