panic.1 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .\"Created with GNOME Manpages Editor Wizard
  2. .\"http://sourceforge.net/projects/gmanedit2
  3. .TH panic 1 "February 18, 2019" "" "panic"
  4. .SH NAME
  5. /usr/bin/panic \- is meant to be used with pp to test different parsing scenarios
  6. .SH SYNOPSIS
  7. .B panic
  8. .RI [ options ]
  9. .br
  10. .SH DESCRIPTION
  11. This manual page explains the
  12. .B panic
  13. program. This program...
  14. .PP
  15. \fBpanic\fP is for...
  16. .SH OPTIONS
  17. .B
  18. .IP args_elided
  19. too many args in stack line, causing the call arguments to be elided
  20. .IP chan_receive
  21. goroutine blocked on <-c
  22. .IP chan_send
  23. goroutine blocked on c<-
  24. .IP goroutine_1
  25. panic in one goroutine
  26. .IP goroutine_100
  27. start 100 goroutines before panicking
  28. .IP goroutine_dedupe_pointers
  29. start 100 goroutines with different pointers before panicking
  30. .IP int
  31. panic(42)
  32. .IP locked
  33. thread locked goroutine via runtime.LockOSThread()
  34. .IP other
  35. panics with other package in the call stack, with both exported and unexpected functions
  36. .IP race
  37. will cause a crash by -race detector
  38. .IP simple
  39. skip the map for a shorter stack trace
  40. .IP slice_str
  41. panic([]string{"allo"}) with cap=2
  42. .IP stack_cut_off
  43. too many call lines in traceback, causing higher up calls to missing
  44. .IP stdlib
  45. panics with stdlib in the call stack, with both exported and unexpected functions
  46. .IP stdlib_and_other
  47. panics with both other and stdlib packages in the call stack
  48. .IP str
  49. panic("allo")
  50. .SH BUGS
  51. For known bugs or to report a new bug upstream see https://notabug.org/themusicgod1/panicparse/issues
  52. .SH "SEE ALSO"
  53. pp