build: add make release target
[netsniff-ng.git] / cpusched.h
bloba7c26ce337fdfe2fa2af891ec902bbd185abaa7d
1 /*
2 * netsniff-ng - the packet sniffing beast
3 * Copyright 2011 Daniel Borkmann.
4 * Subject to the GPL, version 2.
5 */
7 #ifndef CPUSCHED_H
8 #define CPUSCHED_H
10 extern void init_cpusched(unsigned int cpus);
11 extern unsigned int socket_to_cpu(int fd);
12 extern unsigned int register_socket(int fd);
13 extern void unregister_socket(int fd);
14 extern void destroy_cpusched(void);
16 #endif /* CPUSCHED_H */