aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@gnome.org>2009-12-05 04:01:29 +0800
committerDiego Escalante Urrelo <diegoe@gnome.org>2009-12-18 08:34:56 +0800
commit253d6d63bc0986047448ee18162b5543f3f72a23 (patch)
tree50818dee0a5c2b5f5ff59bdd6f5b038a64f9d59d /lib
parentb68b5f3fc860af82c55ee10e2deaf46ca8e14273 (diff)
downloadgsoc2013-epiphany-253d6d63bc0986047448ee18162b5543f3f72a23.tar
gsoc2013-epiphany-253d6d63bc0986047448ee18162b5543f3f72a23.tar.gz
gsoc2013-epiphany-253d6d63bc0986047448ee18162b5543f3f72a23.tar.bz2
gsoc2013-epiphany-253d6d63bc0986047448ee18162b5543f3f72a23.tar.lz
gsoc2013-epiphany-253d6d63bc0986047448ee18162b5543f3f72a23.tar.xz
gsoc2013-epiphany-253d6d63bc0986047448ee18162b5543f3f72a23.tar.zst
gsoc2013-epiphany-253d6d63bc0986047448ee18162b5543f3f72a23.zip
docs: ephy-debug
Diffstat (limited to 'lib')
-rw-r--r--lib/ephy-debug.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/lib/ephy-debug.c b/lib/ephy-debug.c
index 81f93ff6b..0eba70f22 100644
--- a/lib/ephy-debug.c
+++ b/lib/ephy-debug.c
@@ -30,6 +30,14 @@
#include <stdlib.h>
#include <glib.h>
+/**
+ * SECTION:ephy-debug
+ * @short_description: Epiphany debugging and profiling facilities
+ *
+ * Epiphany includes powerful profiling and debugging facilities to log and
+ * analyze modules. Refer to doc/debugging.txt for more information.
+ */
+
static const char *ephy_debug_break = NULL;
#ifndef DISABLE_PROFILING
@@ -156,6 +164,13 @@ trap_handler (const char *log_domain,
}
}
+/**
+ * ephy_debug_init:
+ *
+ * Starts the debugging facility, see doc/debugging.txt in Epiphany's source for
+ * more information. It also starts module logging and profiling if the
+ * appropiate variables are set: EPHY_LOG_MODULES and EPHY_PROFILE_MODULES.
+ **/
void
ephy_debug_init (void)
{
@@ -240,6 +255,13 @@ ephy_profiler_free (EphyProfiler *profiler)
g_free (profiler);
}
+/**
+ * ephy_profiler_start:
+ * @name: name of this new profiler
+ * @module: Epiphany module to profile
+ *
+ * Starts a new profiler on @module naming it @name.
+ **/
void
ephy_profiler_start (const char *name, const char *module)
{
@@ -260,6 +282,12 @@ ephy_profiler_start (const char *name, const char *module)
g_hash_table_insert (ephy_profilers_hash, g_strdup (name), profiler);
}
+/**
+ * ephy_profiler_stop:
+ * @name: name of the profiler to stop
+ *
+ * Stops the profiler named @name.
+ **/
void
ephy_profiler_stop (const char *name)
{