rename UC_MEM_EXE to UC_MEM_FETCH

This commit is contained in:
Nguyen Anh Quynh
2015-09-08 12:55:56 +08:00
parent d9f4e3f56b
commit 7a5d790ade
4 changed files with 5 additions and 5 deletions

View File

@ -153,7 +153,7 @@ typedef enum uc_mem_type {
UC_MEM_READ = 16, // Unmapped memory is read from
UC_MEM_WRITE, // Unmapped memory is written to
UC_MEM_READ_WRITE, // Unmapped memory is accessed (either READ or WRITE)
UC_MEM_EXEC, // Unmapped memory is fetched
UC_MEM_FETCH, // Unmapped memory is fetched
UC_MEM_WRITE_PROT, // Write to write protected, but mapped, memory
UC_MEM_READ_PROT, // Read from read protected, but mapped, memory
UC_MEM_EXEC_PROT, // Fetch from non-executable, but mapped, memory