config.h | config.h | |||
---|---|---|---|---|
skipping to change at line 41 | skipping to change at line 41 | |||
/* Define if we have enabled pthread support */ | /* Define if we have enabled pthread support */ | |||
/* #undef HAVE_PTHREAD */ | /* #undef HAVE_PTHREAD */ | |||
/* If there is no socklen_t, define this for the netdb shim */ | /* If there is no socklen_t, define this for the netdb shim */ | |||
/* #undef NEED_SOCKLEN_T_DEFINE */ | /* #undef NEED_SOCKLEN_T_DEFINE */ | |||
/* Define the arch name string */ | /* Define the arch name string */ | |||
#define COMMON_ARCH "i386" | #define COMMON_ARCH "i386" | |||
/* The version number string */ | /* The version number string */ | |||
#define VERSION "0.8.11.2" | #define VERSION "0.8.11.3" | |||
/* The package name string */ | /* The package name string */ | |||
#define PACKAGE "apt" | #define PACKAGE "apt" | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
mmap.h | mmap.h | |||
---|---|---|---|---|
skipping to change at line 64 | skipping to change at line 64 | |||
public: | public: | |||
enum OpenFlags {NoImmMap = (1<<0),Public = (1<<1),ReadOnly = (1<<2), | enum OpenFlags {NoImmMap = (1<<0),Public = (1<<1),ReadOnly = (1<<2), | |||
UnMapped = (1<<3), Moveable = (1<<4), Fallback = (1 << 5 )}; | UnMapped = (1<<3), Moveable = (1<<4), Fallback = (1 << 5 )}; | |||
// Simple accessors | // Simple accessors | |||
inline operator void *() {return Base;}; | inline operator void *() {return Base;}; | |||
inline void *Data() {return Base;}; | inline void *Data() {return Base;}; | |||
inline unsigned long Size() {return iSize;}; | inline unsigned long Size() {return iSize;}; | |||
inline void AddSize(unsigned long const size) {iSize += size;}; | inline void AddSize(unsigned long const size) {iSize += size;}; | |||
inline bool validData() const { return Base != (void *)-1 && Base != 0; }; | ||||
// File manipulators | // File manipulators | |||
bool Sync(); | bool Sync(); | |||
bool Sync(unsigned long Start,unsigned long Stop); | bool Sync(unsigned long Start,unsigned long Stop); | |||
MMap(FileFd &F,unsigned long Flags); | MMap(FileFd &F,unsigned long Flags); | |||
MMap(unsigned long Flags); | MMap(unsigned long Flags); | |||
virtual ~MMap(); | virtual ~MMap(); | |||
}; | }; | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added | |||