debug.mx raw

   1  package runtime
   2  
   3  // Stub for NumCgoCall, does not return the real value
   4  func NumCgoCall() int {
   5  	return 0
   6  }
   7  
   8  // Stub for NumGoroutine, does not return the real value
   9  func NumGoroutine() int {
  10  	return 1
  11  }
  12  
  13  // Stub for Breakpoint, does not do anything.
  14  func Breakpoint() {
  15  	panic("Breakpoint not supported")
  16  }
  17