libclues
Linux C++ Tracing Library
Loading...
Searching...
No Matches
other.hxx
1#pragma once
2
3// C++
4#include <cstdint>
5
6namespace clues {
7
8extern "C" {
9
11
23struct rlimit32 {
24 uint32_t rlim_cur;
25 uint32_t rlim_max;
26};
27
29
32struct rlimit64 {
33 uint64_t rlim_cur;
34 uint64_t rlim_max;
35};
36
37} // end extern
38
39} // end ns
32-bit based struct rlimit used with getrlimit() and setrlimit().
Definition other.hxx:23
64-bit based struct rlimit used with prlimit().
Definition other.hxx:32