| Server IP : 3.147.158.171 / Your IP : 216.73.216.216 Web Server : Apache/2.4.67 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-2-178.us-east-2.compute.internal 6.1.172-216.329.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 20 06:31:34 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/systemtap/runtime/linux/ |
Upload File : |
/* -*- linux-c -*-
* Kernel Timer Functions
* Copyright (C) 2012 Red Hat Inc.
*
* This file is part of systemtap, and is free software. You can
* redistribute it and/or modify it under the terms of the GNU General
* Public License (GPL); either version 2, or (at your option) any
* later version.
*/
#ifndef _LINUX_TIMER_H_
#define _LINUX_TIMER_H_
// If we're on kernels < 2.6.17, then hrtimers are not supported.
#include <linux/hrtimer.h>
static unsigned long stap_hrtimer_resolution = 0;
struct stap_hrtimer_probe {
struct hrtimer hrtimer;
const struct stap_probe * probe;
int64_t intrv;
int64_t rnd;
unsigned enabled;
};
// The function signature changed in 2.6.21.
#ifdef STAPCONF_HRTIMER_REL
typedef int hrtimer_return_t;
#else
typedef enum hrtimer_restart hrtimer_return_t;
#endif
// autoconf: add get/set expires if missing (pre 2.6.28-rc1)
#ifndef STAPCONF_HRTIMER_GETSET_EXPIRES
#define hrtimer_get_expires(timer) ((timer)->expires)
#define hrtimer_set_expires(timer, time) (void)((timer)->expires = (time))
#endif
// autoconf: adapt to HRTIMER_REL -> HRTIMER_MODE_REL renaming near 2.6.21
#ifdef STAPCONF_HRTIMER_REL
#define HRTIMER_MODE_REL HRTIMER_REL
#endif
#ifdef STAPCONF_HRTIMER_INIT
#define STP_HRTIMER_SETUP(timer, func, clock_id, mode) \
do { \
hrtimer_init((timer), (clock_id), (mode)); \
(*timer).function = (func); \
}while(0)
#else
#define STP_HRTIMER_SETUP(timer, func, clock_id, mode) \
hrtimer_setup((timer), (func), (clock_id), (mode))
#endif
#endif /* _LINUX_TIMER_H_ */