Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/net/netlink/genetlink.h
26278 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef __NET_GENETLINK_H
3
#define __NET_GENETLINK_H
4
5
#include <linux/wait.h>
6
7
/* for synchronisation between af_netlink and genetlink */
8
extern atomic_t genl_sk_destructing_cnt;
9
extern wait_queue_head_t genl_sk_destructing_waitq;
10
11
#endif /* __LINUX_GENERIC_NETLINK_H */
12
13