libclues
Linux C++ Tracing Library
Loading...
Searching...
No Matches
time.hxx
1#pragma once
2
3// C++
4#include <cstdint>
5
6namespace clues {
7
8extern "C" {
9
11struct timespec32 {
12 uint32_t tv_sec;
13 uint32_t tv_nsec;
14};
15
16} // end extern
17
18} // end ns
Original Linux stat data structure for SystemCallNr::OLDSTAT, OLDLSTAT and OLDFSTAT.
Definition time.hxx:11