mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Bug 690856 - Ensure Instruction and Data cache coherency after extracting libraries from the DEBUG intent r=mwu
This commit is contained in:
parent
6a2247f9f9
commit
9783ee4a43
@ -307,6 +307,11 @@ extractFile(const char * path, const struct cdir_entry *entry, void * data)
|
||||
__android_log_print(ANDROID_LOG_ERROR, "GeckoLibLoad", "inflateEnd failed: %s", strm.msg);
|
||||
|
||||
close(fd);
|
||||
#ifdef ANDROID_ARM_LINKER
|
||||
/* We just extracted data that is going to be executed in the future.
|
||||
* We thus need to ensure Instruction and Data cache coherency. */
|
||||
cacheflush((unsigned) buf, (unsigned) buf + size, 0);
|
||||
#endif
|
||||
munmap(buf, size);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user