summaryrefslogtreecommitdiff
path: root/endless/eosprofile.h
blob: 9dacb50ca610c01b6512bc3612976c244b2f2e14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* Copyright 2017 Endless Mobile, Inc. */

#pragma once

#if !(defined(_EOS_SDK_INSIDE_ENDLESS_H) || defined(COMPILING_EOS_SDK))
#error "Please do not include this header file directly."
#endif

#include "eostypes.h"
#include <glib.h>

G_BEGIN_DECLS

/**
 * EosProfileProbe:
 *
 * An opaque identifier for a profiling probe.
 *
 * Since: 0.6
 */
typedef struct _EosProfileProbe         EosProfileProbe;

/**
 * EOS_PROFILE_PROBE:
 * @name: the name of the profiling probe
 *
 * A convenience macro that creates a profiling probe at the given
 * location.
 *
 * Since: 0.6
 */
#define EOS_PROFILE_PROBE(name) \
  eos_profile_probe_start (__FILE__, __LINE__, G_STRFUNC, name)

EOS_SDK_AVAILABLE_IN_0_6
GType eos_profile_probe_get_type (void) G_GNUC_CONST;

EOS_SDK_AVAILABLE_IN_0_6
EosProfileProbe *       eos_profile_probe_start (const char      *file,
                                                 gsize            line,
                                                 const char      *function,
                                                 const char      *name);
EOS_SDK_AVAILABLE_IN_0_6
void                    eos_profile_probe_stop  (EosProfileProbe *probe);

G_DEFINE_AUTOPTR_CLEANUP_FUNC(EosProfileProbe, eos_profile_probe_stop)

G_END_DECLS