Created
February 14, 2018 05:41
-
-
Save zarkone/fbe223675113d7e545c3d1483b4a66ff to your computer and use it in GitHub Desktop.
Revisions
-
Anatoly Smolyaninov created this gist
Feb 14, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ (ns signals-handler (:import [sun.misc Signal SignalHandler])) (defn handle-signals "Sets up POSIX signal handlers." [] (Signal/handle (Signal. "HUP") (proxy [SignalHandler] [] (handle [sig] (println "Caught SIGHUP, reloading") ;; reload-config or whatever you want (reload-config!)))))