mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 11:28:11 +00:00
clarify that UC_HOOK_INTR is also for handling syscall events
This commit is contained in:
parent
728fe750b9
commit
5055899514
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ typedef enum uc_mem_type {
|
|||
|
||||
// All type of hooks for uc_hook_add() API.
|
||||
typedef enum uc_hook_type {
|
||||
UC_HOOK_INTR = 1 << 0, // Hook all interrupt events
|
||||
UC_HOOK_INTR = 1 << 0, // Hook all interrupt/syscall events
|
||||
UC_HOOK_INSN = 1 << 1, // Hook a particular instruction
|
||||
UC_HOOK_CODE = 1 << 2, // Hook a range of code
|
||||
UC_HOOK_BLOCK = 1 << 3, // Hook basic blocks
|
||||
|
|
Loading…
Reference in a new issue