capture: use gint32 instead of GPid

GPid just isn't portable as a data type for on-disk storage, so
be more explicit and use gint32 directly.
This commit is contained in:
Christian Hergert
2019-05-06 20:03:33 -07:00
parent 191754e505
commit 607ef387e7
4 changed files with 29 additions and 29 deletions

View File

@ -35,7 +35,7 @@ SpCaptureCondition *sp_capture_condition_new_where_type_in (guint
SpCaptureCondition *sp_capture_condition_new_where_time_between (gint64 begin_time,
gint64 end_time);
SpCaptureCondition *sp_capture_condition_new_where_pid_in (guint n_pids,
const GPid *pids);
const gint32 *pids);
SpCaptureCondition *sp_capture_condition_new_where_counter_in (guint n_counters,
const guint *counters);
gboolean sp_capture_condition_match (const SpCaptureCondition *self,