1. Feb 07, 2020
    • Marc Vef's avatar
      Code Maintenance: Configurations, definitions, adafs to gkfs · 053cd9a5
      Marc Vef authored
      Restructuring code w.r.t. configurations and definitions:
      - #defines have been mostly removed from configurations
      - a dedicated config file has been added for configurations with constexpr
      - past configure file is now only a cmake wrapper
      - wrapping global functions into namespaces
      
      Removed all adafs and ifs occurrences. Now called gkfs
      053cd9a5
  2. Feb 05, 2020
  3. Feb 04, 2020
  4. Jan 29, 2020
  5. Jan 28, 2020
  6. Dec 09, 2019
  7. Nov 04, 2019
  8. Oct 03, 2019
    • Tommaso Tocci's avatar
      Add CREATE_CHECK_PARENTS compilation flag · 70a5c724
      Tommaso Tocci authored
      CREATE_CHECK_PARENTS controls if the existance of the parent node needs
      to be checked during the creation of a child node.
      
      Example: The check prevents the creation of file `/parent/child`
      if `/parent` doesn't exists or if it is not a directory
      
      By default CREATE_CHECK_PARENTS is enable and the check is enforced.
      It can be disable to speedup creation operations by passing
      `-DCREATE_CHECK_PARENTS:BOOL=OFF` as cmake parameter.
      70a5c724
  9. Sep 18, 2019
  10. Sep 14, 2019
    • Alberto Miranda's avatar
      Add tracking of internal fds · 58055d57
      Alberto Miranda authored
      Fixes an issue where client applications such as ssh might attempt to
      close all open fds, therefore also closing the fds used by the internal
      components of the library such as Mercury.
      58055d57
  11. Sep 09, 2019
  12. Sep 06, 2019
  13. Sep 05, 2019
  14. Jul 26, 2019
  15. Jun 26, 2019
  16. Apr 29, 2019
  17. Apr 24, 2019
  18. Apr 18, 2019
  19. Apr 10, 2019
  20. Mar 05, 2019
  21. Feb 27, 2019
  22. Nov 04, 2018
  23. Nov 03, 2018
  24. Oct 31, 2018
    • Tommaso Tocci's avatar
      cmake: Clean FindSnappy module · ddb82390
      Tommaso Tocci authored
      ddb82390
    • Tommaso Tocci's avatar
      use mercury automatic SM routing · c40be81b
      Tommaso Tocci authored
      Mercury now support shared memory autorouting.
      
      A single margo instance can be initialized and it will handle both
      shared memory communication and remote ones.
      
      If the endpoint of the RPC is local mercury will automatically use
      shared memory.
      
      Since there is only one margo instance all the duplicated code for
      rpc/ipc have been unified and simplified considerably.
      
      ------
      
      The way in which client contact the server has changed.
      
       - Server initializes its own margo instance and generate the endpoint
      communication string using `HG_Addr_self`.
       - This endpoint description string is written on the pid file
       - When the client library loads it will fetch the server endpoint
      description from the pid file and will use that to contact the server.
      c40be81b
  25. Oct 29, 2018