ccl
ccl copied to clipboard
ARM port crashes when (#_getpid) is evaluated at top-level
On my Raspberry Pi system:
Clozure Common Lisp Version 1.12.2 (v1.12.2) LinuxARM32
? (#_getpid)
Segmentation fault
On the other hand:
? (defun mypid () (#_getpid))
MYPID
? (mypid)
19880
?