Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

plkrueger/tsqueue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tsqueue

tsqueue: A Thread-safe Queue for Common Lisp

Paul Krueger

In this implementation multiple readers and multiple writers can access a FIFO queue simultaneously from any number of threads. Readers never block writers and writers never block readers. For example, in an application where there are multiple writers and one reader, the reader will never block (unless there is nothing in the queue). Timeouts can be set to limit block time. If queue processing is of limited duration, the initiator of the process can wait until processing is complete if well-behaved readers and writers indicate when they are done. An example of this sort of operation is provided in the source code and can be exercised by executing (tsq::test-tsq).

About

Thread-safe queue for Common Lisp

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published