Problem with librt.a - correction
Guilherme Vilela
vilela.list@gmail.com
Thu Oct 25 17:23:00 GMT 2007
Hi,
I'm making a simple program to calculate the cpu execution time of a
process. I'm using the function clock_gettime like the line below:
...
if (clock_gettime (CLOCK_PROCESS_CPUTIME_ID, >t_wall) != 0)
...
The problem only occur with the clock_id CLOCK_PROCESS_CPUTIME_ID. I'm
using CentOS 4.2.
When I compile my program with gcc using dynamic libraries (gcc -o
test test.c -ltr) the function clock_gettime return 0 ("success"), but
when I compile the program using static libraries (gcc -o test test.c
-static -ltr) the function clock_gettime returns -1 ("Invalid
argument").
Anybody knows why using librt.so the probram works but using librt.a
the program crashes?
Thanks,
Guilherme
More information about the Libc-alpha
mailing list