(w http.ResponseWriter, r *http.Request)
| 759 | } |
| 760 | |
| 761 | func dumpGoroutines(w http.ResponseWriter, r *http.Request) { |
| 762 | buf := make([]byte, 2<<20) |
| 763 | buf = buf[:runtime.Stack(buf, true)] |
| 764 | w.Header().Set("Content-Type", "text/plain; charset=utf-8") |
| 765 | w.Write(buf) |
| 766 | } |
| 767 | |
| 768 | // StartApps starts all the server applications that were configured |
| 769 | // during InstallHandlers. It should only be called after perkeepd |