Skip to content

Commit

Permalink
Merge pull request #72 from thaJeztah/s/bugfix/busfix/g
Browse files Browse the repository at this point in the history
signal: fix name for SIGBUS on darwin
  • Loading branch information
cpuguy83 committed Aug 5, 2021
2 parents 8a51b5c + bee43a1 commit 00369c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signal/signal_darwin.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,
"BUG": syscall.SIGBUS,
"BUS": syscall.SIGBUS,
"CHLD": syscall.SIGCHLD,
"CONT": syscall.SIGCONT,
"EMT": syscall.SIGEMT,
Expand Down

0 comments on commit 00369c7

Please sign in to comment.