aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 6c7773770d7..d67c97a5f6e 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1164,6 +1164,13 @@ main (argc, argv
1164 setpgrp (); 1164 setpgrp ();
1165#endif 1165#endif
1166#endif 1166#endif
1167#if defined (HAVE_GTK_AND_PTHREAD) && !defined (SYSTEM_MALLOC) && !defined (DOUG_LEA_MALLOC)
1168 {
1169 extern void malloc_enable_thread P_ ((void));
1170
1171 malloc_enable_thread ();
1172 }
1173#endif
1167 } 1174 }
1168 1175
1169 init_signals (); 1176 init_signals ();