![]()  | 
![]()  | 
![]()  | 
![]()  | 
![]()  | 
This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs. | 
Get the resolution of the clock
#include <time.h>
int clock_getres( clockid_t clock_id, 
                  struct timespec * res );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The clock_getres() function gets the resolution of the clock specified by clock_id and puts it into the buffer pointed to by res.
/*
 * This program prints out the clock resolution.
 */
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main( void )
  {
    struct timespec res;
    if ( clock_getres( CLOCK_REALTIME, &res) == -1 ) {
      perror( "clock get resolution" );
      return EXIT_FAILURE;
    }
    printf( "Resolution is %ld micro seconds.\n",
          res.tv_nsec / 1000 );
    return EXIT_SUCCESS;
  }
| Safety: | |
|---|---|
| Cancellation point | No | 
| Interrupt handler | No | 
| Signal handler | Yes | 
| Thread | Yes | 
clock_gettime(), clock_settime(), ClockPeriod(), timespec
![]()  | 
![]()  | 
![]()  | 
![]()  |