Definition in file rt_client.cc.
Include dependency graph for rt_client.cc:
Go to the source code of this file.
Defines | |
#define | timespecclear(tvp) ((tvp)->tv_sec = (tvp)->tv_nsec = 0) |
Clear a timespec structure. | |
#define | timespecisset(tvp) ((tvp)->tv_sec || (tvp)->tv_nsec) |
Test if a timespec has non-zero values. | |
#define | timespeccmp(tvp, uvp, cmp) |
Compare two timespec structures. | |
#define | timespecadd(vvp, uvp) |
Add one timespec to another. | |
#define | timespecsub(vvp, uvp) |
Subtract one timespec from another. | |
Functions | |
void | sigalrm_handler (int sig) |
Handle SIGALRM signal by exiting. | |
int | main (int argc, char *argv[]) |
Variables | |
CORBA::ORB_var | orb |
The CORBA ORB for this process. |
|
Value: do { \ (vvp)->tv_sec += (uvp)->tv_sec; \ (vvp)->tv_nsec += (uvp)->tv_nsec; \ if ((vvp)->tv_nsec >= 1000000000) { \ (vvp)->tv_sec++; \ (vvp)->tv_nsec -= 1000000000; \ } \ } while (0)
Definition at line 79 of file rt_client.cc. Referenced by RKObserverAdvocate::run(). |
|
Clear a timespec structure.
Definition at line 52 of file rt_client.cc. |
|
Value: (((tvp)->tv_sec == (uvp)->tv_sec) ? \ ((tvp)->tv_nsec cmp (uvp)->tv_nsec) : \ ((tvp)->tv_sec cmp (uvp)->tv_sec))
Definition at line 68 of file rt_client.cc. |
|
Test if a timespec has non-zero values.
Definition at line 59 of file rt_client.cc. |
|
Value: do { \ (vvp)->tv_sec -= (uvp)->tv_sec; \ (vvp)->tv_nsec -= (uvp)->tv_nsec; \ if ((vvp)->tv_nsec < 0) { \ (vvp)->tv_sec--; \ (vvp)->tv_nsec += 1000000000; \ } \ } while (0)
Definition at line 95 of file rt_client.cc. |
|
Handle SIGALRM signal by exiting.
Definition at line 116 of file rt_client.cc. References orb. |