18 lines
233 B
C
18 lines
233 B
C
|
|
#ifndef MAPPING_H_
|
||
|
|
#define MAPPING_H_
|
||
|
|
|
||
|
|
#include "queue.h"
|
||
|
|
|
||
|
|
#include <mango/types.h>
|
||
|
|
|
||
|
|
struct fs_file;
|
||
|
|
|
||
|
|
struct file_mapping {
|
||
|
|
struct fs_file *m_file;
|
||
|
|
kern_handle_t m_vmo;
|
||
|
|
off_t m_file_offset;
|
||
|
|
struct queue_entry m_entry;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|