@@ -0,0 +1,14 @@
#pragma once
#include <stdint.h>
struct bps_node {
uint64_t addr;
uint8_t data;
};
const struct bps_node *find(uint64_t addr);
int bps_push(uint64_t addr, uint8_t data);
extern struct bps_node *bps;
extern int bps_len, bps_cnt, bps_max;
The note is not visible to the blocked user.