native,platform: remove pmem protection to improve performance

This commit is contained in:
Zihao Yu 2021-01-10 16:43:38 +08:00
parent 39b2c4350d
commit 18995de269

View file

@ -197,13 +197,13 @@ int __am_is_sigmask_sti(sigset_t *s) {
}
void __am_pmem_protect() {
int ret = mprotect(PMEM_START, PMEM_SIZE, PROT_NONE);
assert(ret == 0);
// int ret = mprotect(PMEM_START, PMEM_SIZE, PROT_NONE);
// assert(ret == 0);
}
void __am_pmem_unprotect() {
int ret = mprotect(PMEM_START, PMEM_SIZE, PROT_READ | PROT_WRITE | PROT_EXEC);
assert(ret == 0);
// int ret = mprotect(PMEM_START, PMEM_SIZE, PROT_READ | PROT_WRITE | PROT_EXEC);
// assert(ret == 0);
}
// This dummy function will be called in trm.c.