From 24dde77ec2392223a81ab02ece87188f8ee4ade5 Mon Sep 17 00:00:00 2001 From: Chris Eagle Date: Sun, 30 Aug 2015 20:38:38 -0700 Subject: [PATCH] fix uc_mem_type comments --- include/unicorn/unicorn.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/unicorn/unicorn.h b/include/unicorn/unicorn.h index fee75297..e4b5e359 100644 --- a/include/unicorn/unicorn.h +++ b/include/unicorn/unicorn.h @@ -149,9 +149,9 @@ typedef enum uc_mem_type { UC_MEM_READ = 16, // Memory is read from UC_MEM_WRITE, // Memory is written to UC_MEM_READ_WRITE, // Memory is accessed (either READ or WRITE) - UC_MEM_WRITE_NW, // write to non-writable - UC_MEM_READ_NR, // read from non-readable - UC_MEM_NX, // read from non-readable + UC_MEM_WRITE_NW, // write to non-writable memory + UC_MEM_READ_NR, // read from non-readable memory + UC_MEM_NX, // fetch from non-executable memory } uc_mem_type; // All type of hooks for uc_hook_add() API.