Arion 1.0.2-alpha
A high-performance C++ framework for emulating executable binaries.
 
Loading...
Searching...
No Matches
time_syscalls.hpp
Go to the documentation of this file.
1#ifndef ARION_TIME_SYSCALLS_HPP
2#define ARION_TIME_SYSCALLS_HPP
3
5
6namespace arion
7{
8
17uint64_t sys_sched_rr_get_interval(std::shared_ptr<Arion> arion, std::vector<SYS_PARAM> params, bool &cancel);
26uint64_t sys_time(std::shared_ptr<Arion> arion, std::vector<SYS_PARAM> params, bool &cancel);
35uint64_t sys_clock_gettime(std::shared_ptr<Arion> arion, std::vector<SYS_PARAM> params, bool &cancel);
44uint64_t sys_clock_getres(std::shared_ptr<Arion> arion, std::vector<SYS_PARAM> params, bool &cancel);
54uint64_t sys_clock_nanosleep(std::shared_ptr<Arion> arion, std::vector<SYS_PARAM> params, bool &cancel);
55
56}; // namespace arion
57
58#endif // ARION_TIME_SYSCALLS_HPP
Definition arch_x86-64.hpp:11
uint64_t sys_clock_nanosleep(std::shared_ptr< Arion > arion, std::vector< SYS_PARAM > params, bool &cancel)
uint64_t sys_clock_gettime(std::shared_ptr< Arion > arion, std::vector< SYS_PARAM > params, bool &cancel)
uint64_t sys_clock_getres(std::shared_ptr< Arion > arion, std::vector< SYS_PARAM > params, bool &cancel)
uint64_t sys_sched_rr_get_interval(std::shared_ptr< Arion > arion, std::vector< SYS_PARAM > params, bool &cancel)
uint64_t sys_time(std::shared_ptr< Arion > arion, std::vector< SYS_PARAM > params, bool &cancel)