// AUTO-GENERATED by autogen.sh; DO NOT EDIT

#include "runtime.h"
#include "arch.h"
#include "malloc.h"
intgo runtime_debug_setMaxStack(intgo in) __asm__ (GOSYM_PREFIX "runtime_debug.setMaxStack");
intgo runtime_debug_setMaxStack(intgo in)
{
  intgo out;
#line 10 "../../../gcc-5.1.0/libgo/runtime/rdebug.goc"

	out = runtime_maxstacksize;
	runtime_maxstacksize = in;
return out;
}
intgo runtime_debug_setGCPercent(intgo in) __asm__ (GOSYM_PREFIX "runtime_debug.setGCPercent");
intgo runtime_debug_setGCPercent(intgo in)
{
  intgo out;
#line 15 "../../../gcc-5.1.0/libgo/runtime/rdebug.goc"

	out = runtime_setgcpercent(in);
return out;
}
intgo runtime_debug_setMaxThreads(intgo in) __asm__ (GOSYM_PREFIX "runtime_debug.setMaxThreads");
intgo runtime_debug_setMaxThreads(intgo in)
{
  intgo out;
#line 19 "../../../gcc-5.1.0/libgo/runtime/rdebug.goc"

	out = runtime_setmaxthreads(in);
return out;
}
bool runtime_debug_SetPanicOnFault(bool enabled) __asm__ (GOSYM_PREFIX "runtime_debug.SetPanicOnFault");
bool runtime_debug_SetPanicOnFault(bool enabled)
{
  bool old;
#line 23 "../../../gcc-5.1.0/libgo/runtime/rdebug.goc"

	old = runtime_g()->paniconfault;
	runtime_g()->paniconfault = enabled;
return old;
}
