mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
sysprof-live-unwinder: ifdef unused code off x86
Fixes a compiler warning about unused functions.
This commit is contained in:
@ -80,6 +80,7 @@ typedef struct _SysprofUnwinder
|
||||
|
||||
static SysprofUnwinder *current_unwinder;
|
||||
|
||||
#if defined(__x86_64__) || defined(__i386__)
|
||||
static inline GPid
|
||||
sysprof_unwinder_next_thread (Dwfl *dwfl,
|
||||
void *user_data,
|
||||
@ -230,6 +231,7 @@ sysprof_unwinder_frame_cb (Dwfl_Frame *frame,
|
||||
|
||||
return DWARF_CB_OK;
|
||||
}
|
||||
#endif
|
||||
|
||||
static inline guint
|
||||
sysprof_unwind (SysprofLiveProcess *self,
|
||||
@ -406,6 +408,7 @@ sysprof_live_process_is_active (SysprofLiveProcess *self)
|
||||
return self->fd > -1;
|
||||
}
|
||||
|
||||
#if defined(__x86_64__) || defined(__i386__)
|
||||
static Dwfl *
|
||||
sysprof_live_process_get_dwfl (SysprofLiveProcess *self)
|
||||
{
|
||||
@ -440,6 +443,7 @@ sysprof_live_process_get_dwfl (SysprofLiveProcess *self)
|
||||
|
||||
return self->dwfl;
|
||||
}
|
||||
#endif
|
||||
|
||||
guint
|
||||
sysprof_live_process_unwind (SysprofLiveProcess *self,
|
||||
|
||||
Reference in New Issue
Block a user