Skip to content

Commit

Permalink
signal: fix name for SIGBUS on freebsd
Browse files Browse the repository at this point in the history
I'm guessing this was a typo; originally added in:
moby/moby@10dc16d,

(Assuming the author has a dislike for SIGBUS (or 🚌))

Signed-off-by: Sebastiaan van Stijn <[email protected]>
  • Loading branch information
thaJeztah committed Aug 5, 2021
1 parent 8a51b5c commit cae3394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signal/signal_freebsd.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
var SignalMap = map[string]syscall.Signal{
"ABRT": syscall.SIGABRT,
"ALRM": syscall.SIGALRM,
"BUF": syscall.SIGBUS,
"BUS": syscall.SIGBUS,
"CHLD": syscall.SIGCHLD,
"CONT": syscall.SIGCONT,
"EMT": syscall.SIGEMT,
Expand Down

0 comments on commit cae3394

Please sign in to comment.