2 * Copyright (C) 2010 Pierre-Marc Fournier
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; version 2.1 of
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
30 #include <common/compat/uuid.h>
35 * Currently using the kernel MONOTONIC clock, waiting for kernel-side
36 * LTTng to implement mmap'd trace clock.
39 /* Choosing correct trace clock */
42 uint64_t trace_clock_read64(void)
46 clock_gettime(CLOCK_MONOTONIC
, &ts
);
47 return ((uint64_t) ts
.tv_sec
* 1000000000ULL) + ts
.tv_nsec
;
51 uint64_t trace_clock_freq(void)
57 int trace_clock_uuid(char *uuid
)
64 * boot_id needs to be read once before being used concurrently
65 * to deal with a Linux kernel race. A fix is proposed for
66 * upstream, but the work-around is needed for older kernels.
68 fp
= fopen("/proc/sys/kernel/random/boot_id", "r");
72 len
= fread(uuid
, 1, UUID_STR_LEN
- 1, fp
);
73 if (len
< UUID_STR_LEN
- 1) {
77 uuid
[UUID_STR_LEN
- 1] = '\0';
83 #endif /* _UST_CLOCK_H */
This page took 0.031398 seconds and 4 git commands to generate.