9 More Discussions You Might Find Interesting
1. AIX
Hi guys,
I got some error on my application server mentioning that gps clock not sync to my db server.
what is the command to check is my server is sync with the gps clock?
appreciate if you guys can let me know how to troubleshoot this problem.
Thanks (1 Reply)
Discussion started by: leecopper
1 Replies
2. Programming
Hi all ,
I need to make a program who describes this ( upper ) graphic:
http://upload.wikimedia.org/wikipedia/commons/8/82/Sawtooth-td_and_fd.png
My idea is to implement a battery charge
x: 0 to time T,
y : 0 to 1 values.
Can you help me ? (1 Reply)
Discussion started by: jerold
1 Replies
3. UNIX for Dummies Questions & Answers
Is it possible to display the clock (timing) on the screen all the time. (3 Replies)
Discussion started by: vino.paal
3 Replies
4. Programming
#include<iostream>
#include<time.h>
using namespace std;
int main()
{
system("date");
clock_t start = clock();
int i=9*8;
while(i--)
{
int j=9999999;
while(j--);
}
clock_t end = clock();
double elapsed =... (4 Replies)
Discussion started by: johnbach
4 Replies
5. Solaris
Hi there!!!
Need your help in solving some tricky problems.
Since clock() as such is buggy on SUN OS 5 we have started using gettimeofday() in our RTOS applications based on Solaris 9.
The problems we actually encountered previously were - the applications kind of freeze/hang eternally on... (1 Reply)
Discussion started by: smanu
1 Replies
6. Programming
Hey all,
i need a program to get the CPU ticks at certain points of my program. So, i thought about using the clock function, but i'm having a hard time figuring out how it really works. I wrote this simple program to try to understand it but it made me feel more confused:
#include <stdio.h>... (5 Replies)
Discussion started by: kastrup_carioca
5 Replies
7. UNIX Desktop Questions & Answers
Guys could you please tell me which appropriate command is used to set hardware (BIOS) clock so that the system keeps time when it reboots & how it's used. I use Linux
Thank you (2 Replies)
Discussion started by: joseph kembo
2 Replies
8. Linux
Is it not possible to get the "Digital" clock in KDE 3.3 to show am or pm?
Well I just noticed the plain clock setting is the only one that shows it. (2 Replies)
Discussion started by: CTroxtell21
2 Replies
9. UNIX for Dummies Questions & Answers
Hey ppl, i was wonddering, in mandrake, how to get the clok to display the time in non-military format....hehe thank you im just tired of looking at 18:00 hehe thank you (2 Replies)
Discussion started by: LolapaloL
2 Replies
LEARN ABOUT DEBIAN
parsedate
PARSEDATE(3) Library Functions Manual PARSEDATE(3)
NAME
parsedate - convert time and date string to number
SYNOPSIS
#include <sys/types.h>
typedef struct _TIMEINFO {
time_t time;
long usec;
long tzone;
} TIMEINFO;
time_t
parsedate(text, now)
char *text;
TIMEINFO *now;
DESCRIPTION
Parsedate converts many common time specifications into the number of seconds since the epoch -- i.e., a time_t; see time(2).
Parsedate returns the time, or -1 on error. Text is a character string containing the time and date. Now is a pointer to the time that
should be used for calculating relative dates. If now is NULL, then GetTimeInfo in libinn(3) is used to obtain the current time and time-
zone.
The character string consists of zero or more specifications of the following form:
time A time of day, which is of the form hh[:mm[:ss]] [meridian] [zone] or hhmm [meridian] [zone]. If no meridian is specified, hh is
interpreted on a 24-hour clock.
date A specific month and day with optional year. The acceptable formats are mm/dd[/yy], yyyy/mm/dd, monthname dd[, yy], dd monthname
[yy], and day, dd monthname yy. The default year is the current year. If the year is less then 100, then 1900 is added to it; if
it is less then 21, then 2000 is added to it.
relative time
A specification relative to the current time. The format is number unit; acceptable units are year, month, week, day, hour, minute
(or min), and second (or sec). The unit can be specified as a singular or plural, as in 3 weeks.
The actual date is calculated according to the following steps. First, any absolute date and/or time is processed and converted. Using
that time as the base, day-of-week specifications are added. Next, relative specifications are used. If a date or day is specified, and
no absolute or relative time is given, midnight is used. Finally, a correction is applied so that the correct hour of the day is produced
after allowing for daylight savings time differences.
Parsedate ignores case when parsing all words; unknown words are taken to be unknown timezones, which are treated as GMT. The names of the
months and days of the week can be abbreviated to their first three letters, with optional trailing period. Periods are ignored in any
timezone or meridian values.
BUGS
Parsedate does not accept all desirable and unambiguous constructions. Semantically incorrect dates such as ``February 31'' are accepted.
Daylight savings time is always taken as a one-hour change which is wrong for some places. The daylight savings time correction can get
confused if parsing a time within an hour of when the reckoning changes, or if given a partial date.
HISTORY
Originally written by Steven M. Bellovin <smb@research.att.com> while at the University of North Carolina at Chapel Hill and distributed
under the name getdate.
A major overhaul was done by Rich $alz <rsalz@bbn.com> and Jim Berets <jberets@bbn.com> in August, 1990.
It was further revised (primarily to remove obsolete constructs and timezone names) a year later by Rich (now <rsalz@osf.org>) for Inter-
NetNews, and the name was changed. This is revision 1.10, dated 1993/01/29.
SEE ALSO
date(1), ctime(3), libinn(3), time(2).
PARSEDATE(3)