When I do: date system call on freeBSD, does it internally use gettimeofday ?

Another que: how do I know where the code of "date" command sitting on the system?

Thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can find the source for date in the online SVN repository browser.

The date command calls time() to get the current time.

link|improve this answer
Thanks Greg. Any commandline way of doing the same? Finding where source is sitting? – hari Jan 11 '11 at 8:14
Thanks Greg, I am trying to see who can call gettimeofday? Any command you know which uses it? – hari Jan 11 '11 at 8:24
1  
@hari: On my system (with the FreeBSD source installed) the source file is at /usr/src/bin/date/date.c. I don't know of a command which specifically calls gettimeofday(), but the easiest way to get one is to write one and compile it. – Greg Hewgill Jan 11 '11 at 8:49
Thanks much, Greg. – hari Jan 11 '11 at 21:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.