Commit | Line | Data |
---|---|---|
d3d3857f MJ |
1 | // SPDX-FileCopyrightText: 2023 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
2 | // | |
3 | // SPDX-License-Identifier: LGPL-2.1-or-later | |
4 | ||
111bda8f MD |
5 | #ifndef _URCU_POLL_H |
6 | #define _URCU_POLL_H | |
7 | ||
8 | /* | |
111bda8f | 9 | * Userspace RCU polling header |
111bda8f MD |
10 | */ |
11 | ||
12 | struct urcu_gp_poll_state { | |
13 | unsigned long grace_period_id; | |
14 | }; | |
15 | ||
16 | #endif /* _URCU_POLL_H */ |