Go to main content

Developing Data Services

Exit Print View

Updated: August 2018
 
 

gettime Utility Code Listing

The gettime utility is a C program that is used by the PROBE program to track the elapsed time between restarts of the probe. You must compile this program and place it in the same directory as the callback methods, that is, the directory pointed to by the RT_basedir property.

Example 8  gettime.c Utility Program
# This utility program, used by the probe method of the data service, tracks
# the elapsed time in seconds from a known reference point (epoch point). It
# must be compiled and placed in the same directory as the data service callback
# methods (RT_basedir).

#pragma ident   "@(#)gettime.c   1.1   12/01/24"

#include <stdio.h>
#include <sys/types.h>
#include <time.h>

main()
{
printf("%d\n", time(0));
exit(0);
}