7 lines
205 B
C
7 lines
205 B
C
#include "bcc_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, true, NULL);
|
|
return !(mod != NULL);
|
|
}
|