mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
As we gain in usage, we need to be more careful about using a prefix that will not collide with other symbols. So version 3 of our ABI will change to using Sysprof/SYSPROF/sysprof as the various prefixes. The soname/api version bump will happen later on this branch so that things are easier to test up until then.
67 lines
2.7 KiB
C
67 lines
2.7 KiB
C
/* sysprof-capture-cursor.h
|
|
*
|
|
* Copyright 2016-2019 Christian Hergert <chergert@redhat.com>
|
|
*
|
|
* This file is free software; you can redistribute it and/or modify it under
|
|
* the terms of the GNU Lesser General Public License as published by the Free
|
|
* Software Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This file is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
* License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "sysprof-capture-types.h"
|
|
#include "sysprof-version-macros.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef struct _SysprofCaptureCursor SysprofCaptureCursor;
|
|
|
|
/**
|
|
* SysprofCaptureCursorCallback:
|
|
*
|
|
* This is the prototype for callbacks that are called for each frame
|
|
* matching the cursor query.
|
|
*
|
|
* Functions matching this typedef should return %TRUE if they want the
|
|
* the caller to stop iteration of cursor.
|
|
*
|
|
* Returns: %TRUE if iteration should stop, otherwise %FALSE.
|
|
*/
|
|
typedef gboolean (*SysprofCaptureCursorCallback) (const SysprofCaptureFrame *frame,
|
|
gpointer user_data);
|
|
|
|
SYSPROF_AVAILABLE_IN_ALL
|
|
SysprofCaptureCursor *sysprof_capture_cursor_new (SysprofCaptureReader *reader);
|
|
SYSPROF_AVAILABLE_IN_ALL
|
|
void sysprof_capture_cursor_unref (SysprofCaptureCursor *self);
|
|
SYSPROF_AVAILABLE_IN_ALL
|
|
SysprofCaptureCursor *sysprof_capture_cursor_ref (SysprofCaptureCursor *self);
|
|
SYSPROF_AVAILABLE_IN_ALL
|
|
SysprofCaptureReader *sysprof_capture_cursor_get_reader (SysprofCaptureCursor *self);
|
|
SYSPROF_AVAILABLE_IN_ALL
|
|
void sysprof_capture_cursor_foreach (SysprofCaptureCursor *self,
|
|
SysprofCaptureCursorCallback callback,
|
|
gpointer user_data);
|
|
SYSPROF_AVAILABLE_IN_ALL
|
|
void sysprof_capture_cursor_reset (SysprofCaptureCursor *self);
|
|
SYSPROF_AVAILABLE_IN_ALL
|
|
void sysprof_capture_cursor_reverse (SysprofCaptureCursor *self);
|
|
SYSPROF_AVAILABLE_IN_ALL
|
|
void sysprof_capture_cursor_add_condition (SysprofCaptureCursor *self,
|
|
SysprofCaptureCondition *condition);
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC (SysprofCaptureCursor, sysprof_capture_cursor_unref)
|
|
|
|
G_END_DECLS
|