bvm_filter 1.0.0

Virtual machine and JIT compiler for eBPF programs
Documentation
/**
 * @brief Helper function used in the BPF to BPF call test
 */
 
typedef unsigned char uint8_t;
typedef unsigned long int uint64_t;

extern void log(const char*);
extern void log_64(uint64_t, uint64_t, uint64_t, uint64_t, uint64_t);

#include "helper.h"

uint64_t helper_function(uint64_t x) {
  log(__func__);
  if (x) {
    x = entrypoint_helper_function(--x);
  }
  return x;
}