]> Joshua Wise's Git repositories - netwatch.git/blame - netwatch/packet.h
Move aseg-paging to netwatch/
[netwatch.git] / netwatch / packet.h
CommitLineData
05c5b136
JP
1#ifndef _PAGETABLE_H
2#define _PAGETABLE_H
3
4#include <stdint.h>
5
6void * l2p(void * addr);
7
8typedef struct {
9 uint32_t signature;
10 uint32_t type;
11 uint8_t data[];
12} packet_t;
13
14packet_t * check_packet(uint32_t logical_addr);
15
16#endif /* _PAGETABLE_H */
This page took 0.02243 seconds and 4 git commands to generate.