Skip to content
/ ptr.h Public

optimized thread safe smart pointer template for c++ reference counting

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
COPYING
Notifications You must be signed in to change notification settings

mgrosso/ptr.h

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ptr.h

    a template based reference counting smart pointer, similar to <auto_ptr>,
    but without the limiting exclusive ownership semantics. It uses a semaphore 
    or, on supported platforms, a simple atomic exchange-and-add to achieve
    thread safety without using a mutex, so it never blocks and adds only a very
    small constant time overhead. The generous MIT license terms let you do pretty
    much whatever you want with it as long as you dont blame me.

http://sourceforge.net/projects/ptr/

About

optimized thread safe smart pointer template for c++ reference counting

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
COPYING

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published