README 660 B

12345678910111213
  1. This package provides semi-portable access to hardware provided
  2. atomic memory operations. These might allow you to write code:
  3. - That does more interesting things in signal handlers.
  4. - Makes more effective use of multiprocessors by allowing you to write
  5. clever lock-free code. Note that such code is very difficult to get
  6. right, and will unavoidably be less portable than lock-based code. It
  7. ia also not always faster than lock-based code. But it may occasionally
  8. be a large performance win.
  9. - To experiment with new and much better thread programming paradigms, etc.
  10. For details and licensing restrictions see the files in the doc
  11. subdirectory.