123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .\"Created with GNOME Manpages Editor Wizard
- .\"http://sourceforge.net/projects/gmanedit2
- .TH panic 1 "February 18, 2019" "" "panic"
- .SH NAME
- /usr/bin/panic \- is meant to be used with pp to test different parsing scenarios
- .SH SYNOPSIS
- .B panic
- .RI [ options ]
- .br
- .SH DESCRIPTION
- This manual page explains the
- .B panic
- program. This program...
- .PP
- \fBpanic\fP is for...
- .SH OPTIONS
- .B
- .IP args_elided
- too many args in stack line, causing the call arguments to be elided
- .IP chan_receive
- goroutine blocked on <-c
- .IP chan_send
- goroutine blocked on c<-
- .IP goroutine_1
- panic in one goroutine
- .IP goroutine_100
- start 100 goroutines before panicking
- .IP goroutine_dedupe_pointers
- start 100 goroutines with different pointers before panicking
- .IP int
- panic(42)
- .IP locked
- thread locked goroutine via runtime.LockOSThread()
- .IP other
- panics with other package in the call stack, with both exported and unexpected functions
- .IP race
- will cause a crash by -race detector
- .IP simple
- skip the map for a shorter stack trace
- .IP slice_str
- panic([]string{"allo"}) with cap=2
- .IP stack_cut_off
- too many call lines in traceback, causing higher up calls to missing
- .IP stdlib
- panics with stdlib in the call stack, with both exported and unexpected functions
- .IP stdlib_and_other
- panics with both other and stdlib packages in the call stack
- .IP str
- panic("allo")
- .SH BUGS
- For known bugs or to report a new bug upstream see https://notabug.org/themusicgod1/panicparse/issues
- .SH "SEE ALSO"
- pp
|