Skip to content
Draft
Prev Previous commit
Next Next commit
Update Sources/System/Process/Signal.swift
Co-authored-by: Karoy Lorentey <[email protected]>
  • Loading branch information
milseman and lorentey authored Feb 25, 2021
commit 153e5d3d3f044938bb6b8d8712f9852b9448c156
2 changes: 1 addition & 1 deletion Sources/System/Process/Signal.swift
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ extension Signal {
public static var unknownSystemCall: Signal { Signal(SIGSYS) }

/// SIGPIPE (13): write on a pipe with no reader (default behavior: terminate process)
public static var pipe: Signal { Signal(SIGPIPE) }
public static var brokenPipe: Signal { Signal(SIGPIPE) }

/// SIGALRM (14): real-time timer expired (default behavior: terminate process)
public static var alarm: Signal { Signal(SIGALRM) }
Expand Down