473,772 Members | 3,731 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

gcc printf conversion specification for struct timeval

Hallo group members,
Do You know any conversion specification for this. I imagine:

struct timeval time;
printf("%T\n", time);

regards,
Pawel
Nov 29 '07 #1
7 19005
PawelCarqowski wrote:
Hallo group members,
Do You know any conversion specification for this. I imagine:

struct timeval time;
printf("%T\n", time);
struct timeval is a GNU C extension. There are no specific format
specifiers for this but since the structure members are of type long
int you can use the 'ld' format specifier for printing them.

For furher GNU C related questions please ask in a GNU group or in a
Linux group.

Nov 29 '07 #2
santosh wrote:
PawelCarqowski wrote:
>Hallo group members,
Do You know any conversion specification for this. I imagine:

struct timeval time;
printf("%T\n ", time);

struct timeval is a GNU C extension.
It's POSIX.

--
Ian Collins.
Nov 29 '07 #3
Ian Collins wrote:
santosh wrote:
>PawelCarqows ki wrote:
>>Hallo group members,
Do You know any conversion specification for this. I imagine:

struct timeval time;
printf("%T\n" , time);

struct timeval is a GNU C extension.

It's POSIX.
You're right, thanks.

Nov 29 '07 #4
On Thu, 29 Nov 2007 10:43:25 +0100, PawelCarqowski wrote:
Hallo group members,
Do You know any conversion specification for this. I imagine:

struct timeval time;
printf("%T\n", time);

regards,
Pawel
I use
printf( "%ld.%.6ld\ n", time.tv_sec, time.tv_usec);
which produces output like
1194509197.4158 00
Nov 29 '07 #5
santosh wrote:
struct timeval is a GNU C extension.
http://opengroup.org/onlinepubs/0096...ys/time.h.html

The <sys/time.hheader shall define the timeval structure that
includes at least the following members:

time_t tv_sec Seconds.
suseconds_t tv_usec Microseconds.

The time_t and suseconds_t types shall be defined as described
in <sys/types.h>.

time_t and clock_t shall be integer or real-floating types.

The type suseconds_t shall be a signed integer type capable of
storing values at least in the range [-1, 1000000].
There are no specific format specifiers for this [...]
Right.

(However, glibc does allow custom conversion specifiers.)

http://www.gnu.org/software/libc/man...ng-Printf.html
but since the structure members are of type long int
you can use the 'ld' format specifier for printing them.
AFAIU, it is possible for time_t to be wider than long int, but
I'm not sure. Consider a platform where time_t is 64 bits wide
and long int is only 32 bits wide.
For furher GNU C related questions please ask in a GNU group
or in a Linux group.
comp.unix.progr ammer for Unix-related questions.
gnu.gcc.help for GCC-specific questions.
Nov 29 '07 #6
Duncan Muirhead wrote:
PawelCarqowski wrote:
>Do You know any conversion specification for this. I imagine:

struct timeval time;
printf("%T\n ", time);

I use
printf( "%ld.%.6ld\ n", time.tv_sec, time.tv_usec);
which produces output like
1194509197.4158 00
What does it print when tv_usec = 666? :-)
Nov 29 '07 #7
Spoon wrote:
....
AFAIU, it is possible for time_t to be wider than long int, but
I'm not sure. Consider a platform where time_t is 64 bits wide
and long int is only 32 bits wide.
time_t can be any arithmetic type. It could even be _Imaginary; which
has some interesting :-) implications.
Nov 29 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
20404
by: Tim Quon | last post by:
Hi I have a function which needs a struct timeVal as timeout parameter. How can I initialize this struct to a timeout of 3 seconds? Thanks Tim
3
2293
by: buzzdee | last post by:
hi, i just wanted to print out some unsigned long int values in hexadecimal, printing out one value works, but not byte by byte. anybody has a suggestinon what my problem is? this is my program:
12
7629
by: John Devereux | last post by:
Hi, I would like to know if their is a conversion specifier, or other method, that will allow me to not use particular arguments to printf. Failing that, is it permissable to simply "not use" the parameter if it is at the end of the parameter list? For example,
8
5917
by: Tony Houghton | last post by:
I'm writing a python program which reads input device events so it needs to know sizeof(struct timeval). By using the struct module I should be able to work out sizeof(long) from python, but I can't think of a way to measure non-fundamental types without including a little bit of C, which I'd rather avoid. How safe would I be assuming that sizeof(struct timeval) == 2 * sizeof(long)
43
2665
by: Joe Smith | last post by:
#include <stdio.h> int main(void) { unsigned long gcd(unsigned long m, unsigned long n); unsigned long m; unsigned long n; unsigned long t; m = 2520; n = 154;
11
3923
by: timmu | last post by:
Someone asked me a question about integer division and printf yesterday, I tell him he should do a casting to float/double before you do any interger division. But he doesn't think so, so I try to do some example to explain, However, after some trying, I confused when I try to do some integer constant division, I know I should do float division something like 3.0/6.0, but I'm still confused where the -0.124709 comes for the following...
2
3749
by: sapsi | last post by:
Hi, I am using a library (pcapy) that returns a timeval object T= (seconds,microseconds) where microseconds is always < 1e6. Is there a Python class that can handle timeval structs? Specifically, I wish to subtract two T (defined above) objects, taking into account the large values of T and T (esp T)? At one point, I would have to step in, since T rolls back to zero (after some time).
5
12226
by: Joe | last post by:
I'm trying to add the current time + a randomly generated time w/ millisecond precision, but the numbers aren't making sense. If I add rand_time + now_time on my calculator, I get a different result than what's in sched_time. Anyone see what I'm doing wrong? These are my results .. rand_time = 4958.128418 now_time = 1225033344.000000
0
9620
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9454
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10261
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10104
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10038
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9912
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5354
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5482
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2850
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.