File size: 244 Bytes
239d4ec
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef VITALIS_KERNEL_BRIDGE_H
#define VITALIS_KERNEL_BRIDGE_H

// Core interface for kernel-to-user space communication
struct vitalis_state {
    unsigned long cpu_load;
    unsigned long memory_usage;
    int kernel_hook_active;
};

#endif