/* -*-comment-start: "//";comment-end:""-*-
* Mes --- Maxwell Equations of Software
- * Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
+ * Copyright © 2016,2017 Jan Nieuwenhuizen <janneke@gnu.org>
*
* This file is part of Mes.
*
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <errno.h>
+
SCM
gc_up_arena () ///((internal))
{
struct scm *cells = g_cells;
g_cells = g_news;
g_news = cells;
- if (g_debug)
+ if (g_debug > 1)
{
eputs (";;; => jam[");
eputs (itoa (g_free));
SCM
gc ()
{
- if (g_debug)
+ if (g_debug == 1) eputs (".");
+ if (g_debug > 1)
{
eputs (";;; gc[");
eputs (itoa (g_free));
make_tmps (g_news);
g_symbols = gc_copy (g_symbols);
SCM new = gc_copy (g_stack);
- if (g_debug)
+ if (g_debug > 1)
{
eputs ("new=");
eputs (itoa (new));