1. 23 Apr, 2015 1 commit
  2. 22 Apr, 2015 5 commits
  3. 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
  4. 14 Apr, 2015 1 commit
  5. 13 Apr, 2015 6 commits
  6. 12 Apr, 2015 1 commit
  7. 10 Apr, 2015 6 commits
  8. 09 Apr, 2015 2 commits
  9. 08 Apr, 2015 4 commits
  10. 07 Apr, 2015 5 commits
  11. 04 Apr, 2015 1 commit
  12. 02 Apr, 2015 3 commits
  13. 01 Apr, 2015 1 commit
  14. 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
  15. 24 Mar, 2015 1 commit
    • Matthias Vallentin's avatar
      Report absolute instead of cumulative measurements · ea75c71d
      Matthias Vallentin authored
      This has the advantage that it makes each sample independent and one can
      now easily "slice" profiler log files. For example, if the first half of
      the execution time is quite different from the second (due to caching or
      different user input), then one can now use the first half of the log
      file and the second half independently, which was not possible before
      because log entries were cumulative.
      ea75c71d