Clozure / ccl

Clozure Common Lisp
http://ccl.clozure.com
Apache License 2.0
840 stars 105 forks source link

ARM port crashes when (#_getpid) is evaluated at top-level #454

Open xrme opened 10 months ago

xrme commented 10 months ago

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
?