You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "bpf_common.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
void *mod = bpf_module_create_c_from_string("BPF_TABLE(\"array\", int, int, stats, 10);\n", 4, NULL, 0);
|
|
return !(mod != NULL);
|
|
}
|