From: Ankit Jain <ankitjain1580@yahoo.com>
To: linux prg <linux-c-programming@vger.kernel.org>
Subject: timer->result
Date: Tue, 28 Sep 2004 19:12:36 +0100 (BST) [thread overview]
Message-ID: <20040928181236.52374.qmail@web52904.mail.yahoo.com> (raw)
hi
#include<stdio.h>
#include<sys/time.h>
#include<time.h>
int main(void)
{
struct timeval t1,t2,result;
gettimeofday(&t1,NULL);
usleep(500);
gettimeofday(&t2,NULL);
timersub(&t2,&t1,&result);
printf("%ld",result.tv_usec);
}
now technically i feel it should display 500
microsecond even not accurate then also it should show
near by 500 or less than 600 microsecond atleast.
on my system it shows 40000 microsecond....
whats the reason? if i remove usleep then it shows 2
or 1 microsecond.....
whats wonrg here?
thanks
ankit
________________________________________________________________________
Yahoo! Messenger - Communicate instantly..."Ping"
your friends today! Download Messenger Now
http://uk.messenger.yahoo.com/download/index.html
next reply other threads:[~2004-09-28 18:12 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-09-28 18:12 Ankit Jain [this message]
2004-09-28 18:40 ` timer->result Alphex Kaanoken
-- strict thread matches above, loose matches on Subject: below --
2004-09-28 19:59 timer->result Huber, George K RDECOM CERDEC STCD SRI
2004-09-29 11:22 ` timer->result Ankit Jain
2004-09-29 14:02 timer->result Huber, George K RDECOM CERDEC STCD SRI
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=20040928181236.52374.qmail@web52904.mail.yahoo.com \
--to=ankitjain1580@yahoo.com \
--cc=linux-c-programming@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 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).