-
-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
/* | ||
* Copyright (C) 2009-2023 Ole André Vadla Ravnås <[email protected]> | ||
* Copyright (C) 2009-2024 Ole André Vadla Ravnås <[email protected]> | ||
* | ||
* Licence: wxWindows Library Licence, Version 3.1 | ||
*/ | ||
|
||
#include "gumstalker.h" | ||
|
||
#include "gumstalker-priv.h" | ||
|
||
struct _GumStalker | ||
{ | ||
GObject parent; | ||
|
@@ -183,6 +185,15 @@ gum_stalker_remove_call_probe (GumStalker * self, | |
{ | ||
} | ||
|
||
void | ||
_gum_stalker_modify_to_run_on_thread (GumStalker * self, | ||
GumThreadId thread_id, | ||
GumCpuContext * cpu_context, | ||
GumStalkerRunOnThreadFunc func, | ||
gpointer data) | ||
{ | ||
} | ||
|
||
gboolean | ||
gum_stalker_iterator_next (GumStalkerIterator * self, | ||
const cs_insn ** insn) | ||
|
@@ -209,15 +220,6 @@ gum_stalker_iterator_put_callout (GumStalkerIterator * self, | |
{ | ||
} | ||
|
||
gboolean | ||
gum_stalker_run_on_thread (GumStalker * self, | ||
GumThreadId thread_id, | ||
GumStalkerRunOnThreadFunc func, | ||
gpointer user_data) | ||
{ | ||
return FALSE; | ||
} | ||
|
||
csh | ||
gum_stalker_iterator_get_capstone (GumStalkerIterator * self) | ||
{ | ||
|