Linux Audio

Check our new training course

Linux kernel drivers training

Mar 31-Apr 9, 2025, special US time zones
Register
Loading...
v6.13.7
 1/* SPDX-License-Identifier: GPL-2.0-only */
 2#ifndef TIMEOUT_H
 3#define TIMEOUT_H
 4
 5enum {
 6	/* Default timeout */
 7	TIMEOUT = 10 /* seconds */
 8};
 9
10void sigalrm(int signo);
11void timeout_begin(unsigned int seconds);
12void timeout_check(const char *operation);
13void timeout_end(void);
14
15#endif /* TIMEOUT_H */
v6.8
 1/* SPDX-License-Identifier: GPL-2.0-only */
 2#ifndef TIMEOUT_H
 3#define TIMEOUT_H
 4
 5enum {
 6	/* Default timeout */
 7	TIMEOUT = 10 /* seconds */
 8};
 9
10void sigalrm(int signo);
11void timeout_begin(unsigned int seconds);
12void timeout_check(const char *operation);
13void timeout_end(void);
14
15#endif /* TIMEOUT_H */