diff options
author | sb <sb@openoffice.org> | 2010-03-04 23:05:27 +0100 |
---|---|---|
committer | sb <sb@openoffice.org> | 2010-03-04 23:05:27 +0100 |
commit | 25c6f2638a4fcaf68452f23872d7b86fffafe2f6 (patch) | |
tree | aa9cdb73a7d8fe2a978ea38818d6da161d969f23 /sal/inc | |
parent | 6c036b980c1d58243cb7ab468de6b067941790dd (diff) | |
parent | 9a832a9bdbda66a0c3bfec2ce3eb7ba5bcc2eb44 (diff) |
merged in re/DEV300_next towards DEV300_m74
Diffstat (limited to 'sal/inc')
-rw-r--r-- | sal/inc/osl/file.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sal/inc/osl/file.h b/sal/inc/osl/file.h index 1320a6f68ae5..29196469fa61 100644 --- a/sal/inc/osl/file.h +++ b/sal/inc/osl/file.h @@ -811,6 +811,14 @@ oslFileError SAL_CALL osl_getFileSize( oslFileHandle Handle, sal_uInt64 *pSize ) */ #define osl_File_MapFlag_RandomAccess ((sal_uInt32)(0x1)) +/** Map flag denoting that the mapped address space will be accessed by the + process soon (and it is advantageous for the operating system to already + start paging in the data). + + @since UDK 3.2.12 + */ +#define osl_File_MapFlag_WillNeed ((sal_uInt32)(0x2)) + /** Map a shared file into memory. @since UDK 3.2.10 |