Enlightenment CVS committal Author : doursse Project : e17 Module : proto/evil
Dir : e17/proto/evil/src/lib/mman/sys Modified Files: mman.h Log Message: update doc, add init/shutdown functions for the socket system, add Tor Lillqvist as author and other miscellaneous fixes =================================================================== RCS file: /cvs/e/e17/proto/evil/src/lib/mman/sys/mman.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- mman.h 27 Feb 2008 21:01:30 -0000 1.1 +++ mman.h 29 Feb 2008 22:42:14 -0000 1.2 @@ -18,11 +18,46 @@ #endif +/** + * @def PROT_NONE + * Data can not be accessed. + */ + +/** + * @def PROT_READ + * Data can be read. + */ + +/** + * @def PROT_WRITE + * Data can be written. + */ + +/** + * @def PROT_EXEC + * Data can be executed. + */ + #define PROT_NONE 0x00 #define PROT_READ 0x01 #define PROT_WRITE 0x02 #define PROT_EXEC 0x04 +/** + * @def MAP_SHARED + * Changes are shared. + */ + +/** + * @def MAP_PRIVATE + * Changes are private. + */ + +/** + * @def MAP_FIXED + * Interpret the address (addr) exactly. + */ + #define MAP_SHARED 0x0001 #define MAP_PRIVATE 0x0002 #define MAP_FIXED 0x0010 @@ -110,6 +145,11 @@ #ifdef __cplusplus } #endif + +#ifdef _WIN32 +# undef EAPI +# define EAPI +#endif /* _WIN32 */ #endif /* __E_WIN32_SYS_MMAN_H__ */ ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs