libsysprof: add API to inherit stdin

Related #76
This commit is contained in:
Christian Hergert
2022-04-01 12:57:02 -07:00
parent 1587bc13b6
commit 8799d2f0ca
2 changed files with 78 additions and 2 deletions

View File

@ -41,8 +41,11 @@ struct _SysprofLocalProfilerClass
};
SYSPROF_AVAILABLE_IN_ALL
SysprofProfiler *sysprof_local_profiler_new (void);
SysprofProfiler *sysprof_local_profiler_new (void);
SYSPROF_AVAILABLE_IN_ALL
SysprofProfiler *sysprof_local_profiler_new_replay (SysprofCaptureReader *reader);
SysprofProfiler *sysprof_local_profiler_new_replay (SysprofCaptureReader *reader);
SYSPROF_AVAILABLE_IN_3_46
void sysprof_local_profiler_set_inherit_stdin (SysprofLocalProfiler *self,
gboolean inherit_stdin);
G_END_DECLS