terom@27: #ifndef STATIC_STRUCT_H terom@27: #define STATIC_STRUCT_H terom@27: terom@27: struct static_file { terom@27: // the file descriptor terom@27: int fh; terom@27: terom@27: // the size of the file in bytes terom@27: off_t size; terom@27: terom@27: // the mmap address terom@27: void *mmap_addr; terom@27: }; terom@27: terom@27: #endif /* STATIC_STRUCT_H */