2009-03-04 04:28:42 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2006 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* System utilities.
|
|
|
|
*/
|
|
|
|
#ifndef _MINZIP_SYSUTIL
|
|
|
|
#define _MINZIP_SYSUTIL
|
|
|
|
|
2014-01-13 23:16:58 +01:00
|
|
|
#include <stdio.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2014-01-13 23:16:58 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct MappedRange {
|
|
|
|
void* addr;
|
|
|
|
size_t length;
|
|
|
|
} MappedRange;
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
/*
|
|
|
|
* Use this to keep track of mapped segments.
|
|
|
|
*/
|
|
|
|
typedef struct MemMapping {
|
2014-01-13 23:16:58 +01:00
|
|
|
unsigned char* addr; /* start of data */
|
|
|
|
size_t length; /* length of data */
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2014-01-13 23:16:58 +01:00
|
|
|
int range_count;
|
|
|
|
MappedRange* ranges;
|
2009-03-04 04:28:42 +01:00
|
|
|
} MemMapping;
|
|
|
|
|
|
|
|
/*
|
2014-01-13 23:16:58 +01:00
|
|
|
* Map a file into a private, read-only memory segment. If 'fn'
|
|
|
|
* begins with an '@' character, it is a map of blocks to be mapped,
|
|
|
|
* otherwise it is treated as an ordinary file.
|
2009-03-04 04:28:42 +01:00
|
|
|
*
|
|
|
|
* On success, "pMap" is filled in, and zero is returned.
|
|
|
|
*/
|
2014-01-13 23:16:58 +01:00
|
|
|
int sysMapFile(const char* fn, MemMapping* pMap);
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Release the pages associated with a shared memory segment.
|
|
|
|
*
|
|
|
|
* This does not free "pMap"; it just releases the memory.
|
|
|
|
*/
|
2014-01-13 23:16:58 +01:00
|
|
|
void sysReleaseMap(MemMapping* pMap);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
#endif /*_MINZIP_SYSUTIL*/
|