Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik-s committed Sep 13, 2024
1 parent 2bf181e commit 0b07d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/generate-bindings.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
(format stream "_term_handler = signal.getsignal(signal.SIGTERM)~%")
(format stream "if platform.system() != \"Windows\":
_chld_handler = signal.getsignal(signal.SIGCHLD)~%")
(format stream "~a = CDLL(str(libpath), mode=RTLD_GLOBAL)~%~%" name)
(format stream "~a_dll = CDLL(str(libpath), mode=RTLD_GLOBAL)~%~%" name)
(format stream "if platform.system() != \"Windows\":
signal.signal(signal.SIGCHLD, _chld_handler)~%~%")
(format stream "signal.signal(signal.SIGTERM, _term_handler)~%~%")
Expand Down

0 comments on commit 0b07d0b

Please sign in to comment.