Fixing issues with const_generator.py (#832)

This commit is contained in:
bulaza 2017-05-13 13:16:48 -04:00 committed by Nguyen Anh Quynh
parent 4b9efdc986
commit 476553223b
1 changed files with 3 additions and 3 deletions

View File

@ -251,7 +251,7 @@ typedef enum uc_hook_type {
#define UC_HOOK_MEM_VALID (UC_HOOK_MEM_READ + UC_HOOK_MEM_WRITE + UC_HOOK_MEM_FETCH)
/*
Callback function for hooking memory (UC_MEM_READ, UC_MEM_WRITE & UC_MEM_FETCH)
Callback function for hooking memory (READ, WRITE & FETCH)
@type: this memory is being READ, or WRITE
@address: address where the code is being executed
@ -263,8 +263,8 @@ typedef void (*uc_cb_hookmem_t)(uc_engine *uc, uc_mem_type type,
uint64_t address, int size, int64_t value, void *user_data);
/*
Callback function for handling invalid memory access events (UC_MEM_*_UNMAPPED and
UC_MEM_*PROT events)
Callback function for handling invalid memory access events (UNMAPPED and
PROT events)
@type: this memory is being READ, or WRITE
@address: address where the code is being executed