2022-07-22 17:39:18 +00:00
|
|
|
//go:build linux && amd64 && cgo && go1.16
|
|
|
|
|
|
|
|
package testhelper
|
|
|
|
|
2023-04-24 20:37:58 +00:00
|
|
|
// #include <stdbool.h>
|
2022-07-22 17:39:18 +00:00
|
|
|
// #include "../bpf/include/function_vals.bpf.h"
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
// Function_parameter_t exports function_parameter_t from function_vals.bpf.h
|
|
|
|
type Function_parameter_t C.function_parameter_t
|
|
|
|
|
|
|
|
// Function_parameter_list_t exports function_parameter_list_t from function_vals.bpf.h
|
|
|
|
type Function_parameter_list_t C.function_parameter_list_t
|