From: "Lee Chin" <leechin@mail.com>
To: hahn@physics.mcmaster.ca, linux-newbie@vger.kernel.org
Subject: usleep
Date: Wed, 11 Jun 2003 17:55:02 -0500 [thread overview]
Message-ID: <20030611225502.29651.qmail@mail.com> (raw)
I would think the following code would wait for 1 second each itteration before printing hello, but it waits way too long. Replacing the for loop body with a
usleep(1000000) works great... what am I missing here?
Thanks
Lee
#include <unistd.h>
int main()
{
while (1)
{
int i;
printf("hello\n");
for(i = 0; i < 50; i++)
{
usleep(1000);
}
}
}
--
__________________________________________________________
Sign-up for your own FREE Personalized E-mail at Mail.com
http://www.mail.com/?sr=signup
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
next reply other threads:[~2003-06-11 22:55 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-06-11 22:55 Lee Chin [this message]
2003-06-11 16:08 ` usleep Alan Bort
2003-06-11 23:21 ` usleep CaT
2003-06-11 23:45 ` usleep Mark Hahn
2003-06-11 23:55 ` usleep Ray Olszewski
2003-06-12 0:17 ` usleep Mark Hahn
[not found] ` <Pine.LNX.4.44.0306112015380.20310-100000@coffee.psychology .mcmaster.ca>
2003-06-12 0:38 ` usleep Ray Olszewski
2003-06-11 18:45 ` usleep Alan Bort
2003-06-12 4:14 ` usleep Riley Williams
2003-06-12 7:46 ` usleep Ray Olszewski
2003-06-13 1:23 ` usleep Stephen Samuel
2003-06-12 11:47 ` usleep Steven Smith
2003-06-13 1:16 ` usleep Stephen Samuel
2003-06-13 1:22 ` usleep Mark Hahn
-- strict thread matches above, loose matches on Subject: below --
2003-06-12 0:42 usleep Lee Chin
2003-06-12 0:53 usleep Lee Chin
2003-06-12 1:02 ` usleep Mark Hahn
2003-06-12 1:04 usleep Lee Chin
2003-06-12 20:43 usleep Lee Chin
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=20030611225502.29651.qmail@mail.com \
--to=leechin@mail.com \
--cc=hahn@physics.mcmaster.ca \
--cc=linux-newbie@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.