]> granicus.if.org Git - strace/blob - delay.h
rtnl_link: print pad field in the struct ifla_port_vsi decoder
[strace] / delay.h
1 /*
2  * Copyright (c) 2018 The strace developers.
3  * All rights reserved.
4  *
5  * SPDX-License-Identifier: LGPL-2.1-or-later
6  */
7
8 #ifndef STRACE_DELAY_H
9 # define STRACE_DELAY_H
10
11 uint16_t alloc_delay_data(void);
12 void fill_delay_data(uint16_t delay_idx, struct timespec *val, bool isenter);
13 bool is_delay_timer_armed(void);
14 void delay_timer_expired(void);
15 void arm_delay_timer(const struct tcb *);
16 void delay_tcb(struct tcb *, uint16_t delay_idx, bool isenter);
17
18 #endif /* !STRACE_DELAY_H */