Skip to content

Commit 88d9a63

Browse files
committed
st: Print the js stack for a couple of critical warnings that
can be difficult to track down.
1 parent c8538e8 commit 88d9a63

File tree

5 files changed

+25
-0
lines changed

5 files changed

+25
-0
lines changed

src/st/meson.build

+3
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ st_private_headers = [
9191
'croco/libcroco-config.h',
9292
'croco/libcroco.h',
9393
'st-background-effect.h',
94+
'st-debug.h',
9495
'st-private.h',
9596
'st-table-private.h',
9697
'st-theme-private.h',
@@ -107,6 +108,7 @@ st_gir_sources = [
107108
'st-box-layout-child.c',
108109
'st-button.c',
109110
'st-clipboard.c',
111+
'st-debug.c',
110112
'st-drawing-area.c',
111113
'st-entry.c',
112114
'st-focus-manager.c',
@@ -174,6 +176,7 @@ st_h = configure_file(
174176
)
175177

176178
libst_deps = [
179+
cjs,
177180
clutter,
178181
cogl,
179182
cogl_path,

src/st/st-debug.c

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2+
3+
#include <cjs/gjs.h>
4+
5+
6+
/**
7+
* st_debug_dump_js_stack:
8+
*
9+
* Prints out the gjs stack
10+
*/
11+
void
12+
st_dump_js_stack (void)
13+
{
14+
gjs_dumpstack ();
15+
}

src/st/st-debug.h

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2+
3+
void st_dump_js_stack (void);

src/st/st-label.c

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040

4141
#include <clutter/clutter.h>
4242

43+
#include "st-debug.h"
4344
#include "st-label.h"
4445
#include "st-private.h"
4546
#include "st-widget.h"
@@ -330,6 +331,7 @@ st_label_get_text (StLabel *label)
330331
if (ctext == NULL) {
331332
g_printerr ("Cinnamon WARNING: Possible orphan label being accessed via st_label_get_text(). Check your timers and handlers!\n"
332333
"Address: %p\n", (void *) label);
334+
st_dump_js_stack ();
333335
priv->orphan = TRUE;
334336
return NULL;
335337
}

src/st/st-widget.c

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
#include "st-widget.h"
3636

3737
#include "st-background-effect.h"
38+
#include "st-debug.h"
3839
#include "st-label.h"
3940
#include "st-private.h"
4041
#include "st-texture-cache.h"
@@ -583,6 +584,7 @@ st_widget_get_theme_node (StWidget *widget)
583584
{
584585
g_critical ("st_widget_get_theme_node called on the widget %s which is not in the stage.",
585586
st_describe_actor (CLUTTER_ACTOR (widget)));
587+
st_dump_js_stack ();
586588
return g_object_new (ST_TYPE_THEME_NODE, NULL);
587589
}
588590

0 commit comments

Comments
 (0)