aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-python.h
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-07-30 03:53:46 +0800
committerChristian Persch <chpe@src.gnome.org>2005-07-30 03:53:46 +0800
commit2ec6bec12610fd0cfed6bc2612c3a9c23815df62 (patch)
tree96c0bc607659ac52a7e39c839bee93f5a20178de /src/ephy-python.h
parent04e7795daadca2b11162a791eb0734163da5acdc (diff)
downloadgsoc2013-epiphany-2ec6bec12610fd0cfed6bc2612c3a9c23815df62.tar
gsoc2013-epiphany-2ec6bec12610fd0cfed6bc2612c3a9c23815df62.tar.gz
gsoc2013-epiphany-2ec6bec12610fd0cfed6bc2612c3a9c23815df62.tar.bz2
gsoc2013-epiphany-2ec6bec12610fd0cfed6bc2612c3a9c23815df62.tar.lz
gsoc2013-epiphany-2ec6bec12610fd0cfed6bc2612c3a9c23815df62.tar.xz
gsoc2013-epiphany-2ec6bec12610fd0cfed6bc2612c3a9c23815df62.tar.zst
gsoc2013-epiphany-2ec6bec12610fd0cfed6bc2612c3a9c23815df62.zip
Be careful not to leave a GC scheduled when terminating python.
2005-07-29 Christian Persch <chpe@cvs.gnome.org> * src/ephy-python-extension.c: (impl_detach_tab), (impl_detach_window): * src/ephy-python-loader.c: (ephy_python_loader_finalize): * src/ephy-python.c: (ephy_python_init), (idle_shutdown), (ephy_python_shutdown), (idle_gc), (ephy_python_schedule_gc): * src/ephy-python.h: Be careful not to leave a GC scheduled when terminating python.
Diffstat (limited to 'src/ephy-python.h')
-rw-r--r--src/ephy-python.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ephy-python.h b/src/ephy-python.h
index 48b6e3285..d94bb5aeb 100644
--- a/src/ephy-python.h
+++ b/src/ephy-python.h
@@ -25,7 +25,11 @@
G_BEGIN_DECLS
-void ephy_python_init (void);
+void ephy_python_init (void);
+
+void ephy_python_shutdown (void);
+
+void ephy_python_schedule_gc (void);
G_END_DECLS