-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix mailbox-empty-p
for sbcl, add simple.lisp
example
#3
base: main
Are you sure you want to change the base?
Conversation
I also fixed this to work on lispworks on linux, as it seems the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand where the stress is in stresstest.lisp?
If it is intended to come from your possible Bignum, then have a look at the crypto that uses 256 bit integers and larger. It works fine because Lisp works fine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The SBCL fix is fine.
THe simple.lisp should not be using DEFPARAMETER on the Actors. That will eventually get you into trouble. DEFPARAMETER is a "Special Binding" in Lisp. We need "Lexical Bindings", like those of all Lisp Functions.
Maybe it's incorrect naming. I just wanted to saturate my CPUs with something to compute. |
Thanks for this tip! |
This is useful for newbies like me.