aboutsummaryrefslogtreecommitdiff
path: root/module/repl.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-05-04 13:03:41 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-05-04 13:03:41 +0200
commit918a56e896c3a96975301a7f1e0fda0c98de29d3 (patch)
tree3bfd11391f2706882a69b23c63e764cd81e96f21 /module/repl.scm
parentFix server --port flag. (diff)
downloadcalp-918a56e896c3a96975301a7f1e0fda0c98de29d3.tar.gz
calp-918a56e896c3a96975301a7f1e0fda0c98de29d3.tar.xz
Add shutdown-hook.
Diffstat (limited to 'module/repl.scm')
-rw-r--r--module/repl.scm9
1 files changed, 7 insertions, 2 deletions
diff --git a/module/repl.scm b/module/repl.scm
index a0133403..ae559251 100644
--- a/module/repl.scm
+++ b/module/repl.scm
@@ -1,6 +1,8 @@
(define-module (repl)
:use-module (system repl server)
- :use-module (ice-9 regex))
+ :use-module (ice-9 regex)
+ :use-module ((util hooks) :select (shutdown-hook))
+ )
(define-public (runtime-dir)
(or (getenv "XDG_RUNTIME_DIR")
@@ -16,8 +18,11 @@
;; IPv6 is as of Gulie 2.2 not supported by make-tcp-server-socket.
;; This might be the same problem as I encountered in my html server.
[else 'UNIX])
- ;; TODO created unix sockets are newer cleaned up
[(UNIX)
+ (add-hook! shutdown-hook (lambda () (catch 'system-error (lambda () (delete-file address))
+ (lambda (err proc fmt . args)
+ ;; TODO warn here
+ err))))
(make-unix-domain-server-socket path: address)]
[(IPv4) (apply (case-lambda
[() (error "Empty address?")]