Automatic parallelism through parallel concurrent execution by dispatch thread pool.
No user level threads, locks, no shared mutable memory. A convention of functionally pure programming protects concurrent access during parallel execution. Only one overt mutation (BECOME), under carefully controlled CAS execution, with automatic message re-delivery on failed CAS. Asynchronous execution. > On Dec 22, 2025, at 09:52, David McClain <[email protected]> > wrote: > >> Any suggestions? > > > Transactional Conventional Hewitt Actors > (staged SEND, BECOME, CREATE until successful exit) > > https://github.com/dbmcclain/Lisp-Actors > >
