mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
capture-condition: add new AND condition
This requires that both the left and right condition evaluate to TRUE. We obviously will want to add more of these for things like OR, NOT, etc. However, we can add them as necessary since they are fairly self contained patches.
This commit is contained in:
@ -26,6 +26,8 @@ G_BEGIN_DECLS
|
||||
#define SP_TYPE_CAPTURE_CONDITION (sp_capture_condition_get_type())
|
||||
|
||||
GType sp_capture_condition_get_type (void);
|
||||
SpCaptureCondition *sp_capture_condition_new_and (SpCaptureCondition *left,
|
||||
SpCaptureCondition *right);
|
||||
SpCaptureCondition *sp_capture_condition_new_where_type_in (guint n_types,
|
||||
const SpCaptureFrameType *types);
|
||||
SpCaptureCondition *sp_capture_condition_new_where_time_between (gint64 begin_time,
|
||||
|
||||
Reference in New Issue
Block a user