1. 22 Apr, 2015 4 commits
  2. 20 Apr, 2015 2 commits
    • Dominik Charousset's avatar
    • Pavel Kretov's avatar
      Minor build system bugfixes · afb2b5e7
      Pavel Kretov authored
      - Add '--no-summary' option to ./configure script to disable printing the table
        with library configuration information at CMake pass.
      
      - Make all CMake variables holding build options have consistent names by adding
        prefix CAF_ where it is missing.
      
      - Remove extra "Enter subdirectory" messages which were useful for debugging at
        the early development stage.
      afb2b5e7
  3. 14 Apr, 2015 1 commit
  4. 13 Apr, 2015 6 commits
  5. 12 Apr, 2015 1 commit
  6. 10 Apr, 2015 6 commits
  7. 09 Apr, 2015 2 commits
  8. 08 Apr, 2015 4 commits
  9. 07 Apr, 2015 5 commits
  10. 04 Apr, 2015 1 commit
  11. 02 Apr, 2015 3 commits
  12. 01 Apr, 2015 1 commit
  13. 26 Mar, 2015 1 commit
    • Dominik Charousset's avatar
      Make actor flags atomic to silence false positives · a5575438
      Dominik Charousset authored
      Use `atomic<int>` instead of `int` for `local_actor::m_flags`. The atomic uses
      only relaxed memory ordering, since all flags that are allowed to be read by
      others never change after an actor has launched. This should produce the same
      compiler output as before---at least on x86 or any platform with atomic
      load/store for word sized memory regions---but suppresses false positives from
      analyser tools such as Thread Sanitizer. Close #255.
      a5575438
  14. 24 Mar, 2015 2 commits
  15. 21 Mar, 2015 1 commit