GLAST/LAT > DAQ and FSW > FSW > Doxygen Index > PBS / V2-11-0
Constituent: pbs     Tag: rad750
#include <stdlib.h>
#include <time.h>
#include "PBS/TSS.h"
#include "PBS/WCT.h"
#include "WCT_pvtdefs.ih"
Include dependency graph for TSS.c:

Defines | |
| #define | get_time() WCT_get() |
| Gets the time in the local representation. | |
| #define | NSECS_IN_A_SECOND (1000 * 1000 * 1000) |
| Convenience symbol for a billion. | |
Functions | |
| timespec | TSS_nsecxTOtodAdd (long long int delta) |
| Computes the time specification by adding a number of nanoseconds to the current time. | |
| timespec | TSS_nsecsTOtodAdd (unsigned int delta) |
| Computes the time specification by adding a number of nanoseconds to the current time. | |
| timespec | TSS_usecsTOtodAdd (unsigned int delta) |
| Computes the time specification by adding a number of microseconds to the current time. | |
| timespec | TSS_secsTOtodAdd (unsigned int delta) |
| Computes the time specification by adding a number of seconds to the current time. | |
| timespec | TSS_from_wct (WCT_time wct) |
| Converts a Wall Clock Time to a struct timespec. | |
CVS $Id: TSS.c,v 1.5 2005/10/01 01:00:13 russell Exp $
A timespec structure is a standard structure found in the "C"/Unix world. It represents time as two fields in a structure, a seconds field and a microseconds field. Performing simple operations, such as addition and subtraction, is not completely trivial, so this file provides a set of standard manipulation routines.
|
|
Converts a Wall Clock Time to a struct timespec.
|
|
|
Computes the time specification by adding a number of nanoseconds to the current time.
|
|
|
Computes the time specification by adding a number of nanoseconds to the current time.
|
|
|
Computes the time specification by adding a number of seconds to the current time.
|
|
|
Computes the time specification by adding a number of microseconds to the current time.
|
1.4.4