You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In test/function-cache.lisp it calls make-hash-table with :synchronized t, which is not a standard keyword and should give an error on implementations that don't recognize it.
On LispWorks at least, hash-tables are by default "synchronized", i.e. safe to access from multiple threads.
The text was updated successfully, but these errors were encountered:
In test/function-cache.lisp it calls make-hash-table with :synchronized t, which is not a standard keyword and should give an error on implementations that don't recognize it.
On LispWorks at least, hash-tables are by default "synchronized", i.e. safe to access from multiple threads.
The text was updated successfully, but these errors were encountered: