Skip to content

Commit

Permalink
Fix MIPS bits
Browse files Browse the repository at this point in the history
  • Loading branch information
oleavr committed Feb 23, 2024
1 parent ae15188 commit 6444633
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions gum/backend-mips/gumstalker-mips.c
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;
Expand Down Expand Up @@ -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)
Expand All @@ -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)
{
Expand Down

0 comments on commit 6444633

Please sign in to comment.