Added new map structure, in preparation for new internal maps storing requested commands via the network backdoor

This commit is contained in:
h3xduck
2022-02-14 20:08:30 -05:00
parent edbaf09c06
commit 2ae705f037
8 changed files with 1678 additions and 1636 deletions

View File

@@ -1,10 +1,8 @@
#ifndef __MAP_COMMON_H
#define __MAP_COMMON_H
#define RB_EVENT_MAX_MESSAGE_SIZE 512
// Ring buffer for kernel->user communication
#define RB_EVENT_MAX_MESSAGE_SIZE 512
typedef enum {
INFO,
DEBUG,
@@ -19,5 +17,4 @@ struct rb_event {
event_type_t event_type;
};
#endif