public inbox for cygwin-patches@cygwin.com
 help / color / mirror / Atom feed
* [PATCH] Cygwin: pinfo: Fix exit code when non-cygwin app exits by Ctrl-C.
@ 2022-02-24 13:43 Takashi Yano
  2022-02-24 14:24 ` Takashi Yano
  0 siblings, 1 reply; 2+ messages in thread
From: Takashi Yano @ 2022-02-24 13:43 UTC (permalink / raw)
  To: cygwin-patches

- Previously, if non-cygwin app exits by Ctrl-C, exit code was
  0x00007f00. With this patch, the exit code will be 0x00000002,
  which means process exited by SIGINT.
---
 winsup/cygwin/pinfo.cc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/winsup/cygwin/pinfo.cc b/winsup/cygwin/pinfo.cc
index bce743bfc..bb7c16547 100644
--- a/winsup/cygwin/pinfo.cc
+++ b/winsup/cygwin/pinfo.cc
@@ -156,6 +156,9 @@ pinfo::status_exit (DWORD x)
 	 a lengthy small_printf instead. */
       x = SIGBUS;
       break;
+    case STATUS_CONTROL_C_EXIT:
+      x = SIGINT;
+      break;
     default:
       debug_printf ("*** STATUS_%y\n", x);
       x = 127 << 8;
-- 
2.35.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] Cygwin: pinfo: Fix exit code when non-cygwin app exits by Ctrl-C.
  2022-02-24 13:43 [PATCH] Cygwin: pinfo: Fix exit code when non-cygwin app exits by Ctrl-C Takashi Yano
@ 2022-02-24 14:24 ` Takashi Yano
  0 siblings, 0 replies; 2+ messages in thread
From: Takashi Yano @ 2022-02-24 14:24 UTC (permalink / raw)
  To: cygwin-patches

On Thu, 24 Feb 2022 22:43:35 +0900
Takashi Yano wrote:
> - Previously, if non-cygwin app exits by Ctrl-C, exit code was
>   0x00007f00. With this patch, the exit code will be 0x00000002,
>   which means process exited by SIGINT.
> ---
>  winsup/cygwin/pinfo.cc | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/winsup/cygwin/pinfo.cc b/winsup/cygwin/pinfo.cc
> index bce743bfc..bb7c16547 100644
> --- a/winsup/cygwin/pinfo.cc
> +++ b/winsup/cygwin/pinfo.cc
> @@ -156,6 +156,9 @@ pinfo::status_exit (DWORD x)
>  	 a lengthy small_printf instead. */
>        x = SIGBUS;
>        break;
> +    case STATUS_CONTROL_C_EXIT:
> +      x = SIGINT;
> +      break;
>      default:
>        debug_printf ("*** STATUS_%y\n", x);
>        x = 127 << 8;
> -- 
> 2.35.1

This was not enough. I will submit v2 patch.

-- 
Takashi Yano <takashi.yano@nifty.ne.jp>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-02-24 14:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-24 13:43 [PATCH] Cygwin: pinfo: Fix exit code when non-cygwin app exits by Ctrl-C Takashi Yano
2022-02-24 14:24 ` Takashi Yano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).