blob: 67ec5ea8e888d07c37b5cf333b5e13e4a247a2ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/**
* distrio error helper
*
* - inline functions to ease handling of Distrio::Error
*
* @author Manuel Traut <manut@mecka.net>
* @licence GPLv2
*/
#include <time.h>
inline Distrio::Error *distrio_success (void) {
struct timespec ts;
Distrio::Error *e = new Distrio::Error;
clock_gettime (CLOCK_REALTIME, &ts);
e->code = Distrio::SUCCESS;
e->level = Distrio::L_DEBUG;
e->time.seconds = ts.tv_sec;
e->time.nanoseconds = ts.tv_nsec;
e->module_id = 0;
e->description = CORBA::string_dup (__func__);
return e;
}
|