guile-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Question about handling SIGINT properly in Guile


From: Vijay Marupudi
Subject: RE: Question about handling SIGINT properly in Guile
Date: Wed, 17 Apr 2024 10:28:31 -0400

Here's another simple reproduction, Guile's own webserver module

(use-modules (web server))

(define (handler request body)
  (values '((content-type . (text/plain)))
          "Hello, World!"))

(run-server handler)

It needs two SIGINTs to properly end the program. I think I'm encountering a 
bug rather than a misconception...

~ Vijay



reply via email to

[Prev in Thread] Current Thread [Next in Thread]