Samuel Edwin Ward
Samuel Edwin Ward

Reputation: 6695

Common Lisp Implementations with Concurrent Garbage Collectors

What Common Lisp implementations, if any, provide a concurrent garbage collector?

Upvotes: 4

Views: 417

Answers (1)

Rainer Joswig
Rainer Joswig

Reputation: 139411

None.

If you run ABCL on top of a JVM then you might be able to use the concurrent GC of that JVM (if available). Though I'm not sure how well ABCL runs concurrently.

Upvotes: 5

Related Questions