1. 03 Jan, 2020 2 commits
    • Maged Michael's avatar
      RequestContext: Declare gflag, add folly_ prefix to gflag name · ba225d4b
      Maged Michael authored
      Summary:
      Declare gflag to enable turning it on and off at run time.
      Added folly_ prefix to gflag name to reduce name pollution.
      
      Reviewed By: davidtgoldblatt
      
      Differential Revision: D19144459
      
      fbshipit-source-id: 1e82cb102e47fea856952d1e630c03baf38adf1d
      ba225d4b
    • Yedidya Feldblum's avatar
      FOLLY_SAFE_PCHECK · 09634ef5
      Yedidya Feldblum authored
      Summary: [Folly] `FOLLY_SAFE_PCHECK`, for reporting errors from C standard library functions which may set errno from within code which must be reentrant.
      
      Reviewed By: nbronson
      
      Differential Revision: D19222785
      
      fbshipit-source-id: 532ccee39c9d180b9b17edbd31517c09024539d7
      09634ef5
  2. 02 Jan, 2020 3 commits
    • Yedidya Feldblum's avatar
      Avoid unnecessary virtualization in MemoryMapping · 1cd1bfb6
      Yedidya Feldblum authored
      Summary: [Folly] Avoid unnecessary virtualization in `MemoryMapping`.
      
      Reviewed By: Orvid
      
      Differential Revision: D19261862
      
      fbshipit-source-id: 520f1182477bc723c8f42505b30fc09e00758d05
      1cd1bfb6
    • Lukas Piatkowski's avatar
      rust-shed: move stats to the shed · 99642ef2
      Lukas Piatkowski authored
      Summary: This change also introduces a dummy no-op stats implementation for non-fbcode builds.
      
      Reviewed By: farnz
      
      Differential Revision: D19193954
      
      fbshipit-source-id: f513368a2387987bf129ddf935217c90b7c84f2a
      99642ef2
    • James Donald's avatar
      Make defined(_MSC_VER) checks consistent for -Wundef · 96c62e34
      James Donald authored
      Summary: Note: also making the `__GNUC__ || __clang__` nearby part in Pretty.h the same so that the header doesn't appear inconsistent, likewise for Hardware.h
      
      Reviewed By: yfeldblum
      
      Differential Revision: D19237732
      
      fbshipit-source-id: bf3270ddf2102ea722be1eb1a557234d264f9af7
      96c62e34
  3. 01 Jan, 2020 2 commits
  4. 31 Dec, 2019 2 commits
  5. 30 Dec, 2019 1 commit
  6. 29 Dec, 2019 2 commits
    • Yedidya Feldblum's avatar
      Apply clang-format in places · 96652b6f
      Yedidya Feldblum authored
      Summary: [Folly] Apply `clang-format` in places.
      
      Reviewed By: markisaa
      
      Differential Revision: D19249033
      
      fbshipit-source-id: 1a768eea013112ee5cd9d8b78114927fd6d6db04
      96652b6f
    • Yedidya Feldblum's avatar
      Apply python formatting to unsynced .pyi files · 88065016
      Yedidya Feldblum authored
      Summary: [Folly] Apply python formatting to a few unsynced places in some `.pyi` files.
      
      Reviewed By: markisaa
      
      Differential Revision: D19249037
      
      fbshipit-source-id: 6b14c5fedbee0f25a4b0fdfdd0f157e62a95a766
      88065016
  7. 28 Dec, 2019 3 commits
  8. 26 Dec, 2019 2 commits
    • Igor Sugak's avatar
      add unsigned-integer-overflow suppressions to Hash.h · a40d6083
      Igor Sugak authored
      Summary:
      I'd like to enable UBSAN's unsigned-integer-overflow check. It's not an undefined behavior, but it is often unintentional.
      
      This adds suppressions to folly/hash where unsigned-integer-overflow is expected due the the nature of operations.
      
      Reviewed By: yfeldblum
      
      Differential Revision: D19217819
      
      fbshipit-source-id: 1a468018823e0ac1d01c3ae889e38e9d42bdd8b7
      a40d6083
    • Yedidya Feldblum's avatar
      Cut some outdated lines in docs and comments · c895f607
      Yedidya Feldblum authored
      Summary: [Folly] Cut some outdated lines in docs and comments which refer to no-longer supported versions of gcc.
      
      Reviewed By: Orvid
      
      Differential Revision: D19229059
      
      fbshipit-source-id: c8abb81c292091339622e9cc3d4e5fd3cd6459b4
      c895f607
  9. 25 Dec, 2019 6 commits
    • Rosen Penev's avatar
      constexpr: Use GLIBCXX instead of GNUC (#1288) · 1702a53f
      Rosen Penev authored
      Summary:
      libcxx does not have strcmp or strlen as constexpr.
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      Pull Request resolved: https://github.com/facebook/folly/pull/1288
      
      Reviewed By: Orvid
      
      Differential Revision: D19226813
      
      Pulled By: yfeldblum
      
      fbshipit-source-id: 4b5de4f923f4d7871c059af54eb7d375f344f48a
      1702a53f
    • Yedidya Feldblum's avatar
      Use getCurrentThreadName() in EventBaseTestLib.h · 80031642
      Yedidya Feldblum authored
      Summary: [Folly] Use `getCurrentThreadName()` in `EventBaseTestLib.h` v.s. using pthread directly.
      
      Reviewed By: Orvid
      
      Differential Revision: D19226856
      
      fbshipit-source-id: 90f825ab0fc186a896cd63c425e55153daa0fefd
      80031642
    • Yedidya Feldblum's avatar
      Update a comment in CacheLocalityBenchmark.cpp · cc6aac41
      Yedidya Feldblum authored
      Summary: [Folly] Update a comment in `CacheLocalityBenchmark.cpp` to refer to the direct function used for fetching the thread-id.
      
      Reviewed By: Orvid
      
      Differential Revision: D19226855
      
      fbshipit-source-id: 8cf203daa7b3fbc00e387dca881be7f9ce47af95
      cc6aac41
    • Yedidya Feldblum's avatar
      Use std::thread in AtomicHashMapTest.cpp · d227b297
      Yedidya Feldblum authored
      Summary:
      [Folly] Use `std::thread` in `AtomicHashMapTest.cpp` instead of using the pthread API.
      
      In general in normal C++ code, prefer C++ standard library facilities over C facilities.
      
      Reviewed By: Orvid
      
      Differential Revision: D19226850
      
      fbshipit-source-id: 7edc5fca25266b48ab3e8c8829708594d7563409
      d227b297
    • Joe Loser's avatar
      Fix CMake build: EventBaseTestLib.cpp doesn't exist (#1284) · 77c8f6b0
      Joe Loser authored
      Summary:
      - EventBaseTestLib.cpp file was moved to EventBaseTestLibProvider.cpp
        in Differential Revision: D19001877.
      - Change CMakeLists.txt to specify EventBaseTestLibProvider.cpp so that
        CMake does not fail at configure time due to EventBaseTestLib.cpp not
        existing in the source tree.
      Pull Request resolved: https://github.com/facebook/folly/pull/1284
      
      Reviewed By: markisaa
      
      Differential Revision: D19226798
      
      Pulled By: yfeldblum
      
      fbshipit-source-id: 45a5e5ca03a52897a6f8f711761bf78ef386e6f6
      77c8f6b0
    • Yedidya Feldblum's avatar
      Fix typo in clang-format control · c3c26146
      Yedidya Feldblum authored
      Summary: [Folly] Fix typo in `clang-format` control.
      
      Reviewed By: markisaa
      
      Differential Revision: D19224383
      
      fbshipit-source-id: 1d153fb4eaead422d93c235e40163b8ae855d13a
      c3c26146
  10. 24 Dec, 2019 2 commits
  11. 21 Dec, 2019 7 commits
    • Yedidya Feldblum's avatar
      Let AtFork accept ptr-to-const handle · f519c88f
      Yedidya Feldblum authored
      Summary: [Folly] Let `AtFork` accept ptr-to-`const` handle rather than requiring only ptr-to-non-`const`.
      
      Reviewed By: luciang
      
      Differential Revision: D19208255
      
      fbshipit-source-id: c7a6ab42b7b652ebc4ea6465f80db37ef1d155df
      f519c88f
    • Yedidya Feldblum's avatar
      Rename object to handle in AtFork · 90222d1a
      Yedidya Feldblum authored
      Summary: [Folly] Rename `object` to `handle` in `AtFork` since it is used opaquely.
      
      Reviewed By: luciang
      
      Differential Revision: D19208246
      
      fbshipit-source-id: 3fc23e85b64f911f8e172a22f7e7080952d4dfe9
      90222d1a
    • Yedidya Feldblum's avatar
      Register with AtFork without an object in BufferedRandomDevice · 5edd05b5
      Yedidya Feldblum authored
      Summary: [Folly] Register with `AtFork` without an object in `BufferedRandomDevice`, since no object is actually needed and since it is possible for the object passed in to be destroyed.
      
      Reviewed By: luciang
      
      Differential Revision: D19207385
      
      fbshipit-source-id: 7c0e2793d9b438e576bf26bc3b3b459b372aec6d
      5edd05b5
    • Yedidya Feldblum's avatar
      Let AtFork ignore unregistration of nullptr objects · c8e0eca1
      Yedidya Feldblum authored
      Summary: [Folly] Let `AtFork` ignore unregistration of `nullptr` objects - i.e., let `nullptr` objects be the way of signaling immunity from unregistration.
      
      Reviewed By: luciang
      
      Differential Revision: D19207380
      
      fbshipit-source-id: 6dfee52bf815fc257697fb89d67f69cede0f39f6
      c8e0eca1
    • Yedidya Feldblum's avatar
      Define to_narrow in terms of implicit conversion · f3dfa82a
      Yedidya Feldblum authored
      Summary:
      [Folly] Define `to_narrow` in terms of implicit conversion to take advantage of ubsan's truncation checks.
      
      Note that integer truncation is not undefined behavior per se but is commonly unintended, so ubsan checks for it. Uses of `to_narrow` should not be subject to truncation; wherever truncation is anticipated, better to use an explicit conversion with a named destination type.
      
      Requires suppressing `-Wconversion` around the implicit conversion to avoid extraneous warnings and errors when the compiler detects narrowing implicit conversions. Since `to_narrow` models explicit conversion while merely being defined in terms of implicit conversion, it is already anticipated by all users that a narrowing conversion may occur; the warning is there to inform users only about unanticipated cases.
      
      Reviewed By: luciang
      
      Differential Revision: D19201430
      
      fbshipit-source-id: b3739d3d9aa05e95f7b3e4dff54e719691c1f04c
      f3dfa82a
    • Yedidya Feldblum's avatar
      Mark co_error as final · 186cd823
      Yedidya Feldblum authored
      Summary: [Folly] Mark `co_error` as `final`.
      
      Reviewed By: lewissbaker
      
      Differential Revision: D19173904
      
      fbshipit-source-id: 3dedf9a27629dd495d7097d00566a92753b65778
      186cd823
    • Yedidya Feldblum's avatar
      Forbid co_error with empty exception_wrapper · e23a4b1d
      Yedidya Feldblum authored
      Summary: [Folly] Forbid `co_error` with empty `exception_wrapper`.
      
      Reviewed By: lewissbaker
      
      Differential Revision: D19172250
      
      fbshipit-source-id: 5ffa7502eb97b6a084be3112b17f29bad2d96a0f
      e23a4b1d
  12. 20 Dec, 2019 7 commits
    • Rosen Penev's avatar
      Use ranged based for loops (#1260) · 73e26d77
      Rosen Penev authored
      Summary:
      Found with modernize-loop-convert
      Signed-off-by: default avatarRosen Penev <rosenp@gmail.com>
      Pull Request resolved: https://github.com/facebook/folly/pull/1260
      
      Reviewed By: markisaa
      
      Differential Revision: D18747876
      
      Pulled By: yfeldblum
      
      fbshipit-source-id: f2b19654bb3fcbb75b1210edeef536c88f3052d1
      73e26d77
    • Yedidya Feldblum's avatar
      Let PriorityUnboundedQueueSet align its queues · db5458a7
      Yedidya Feldblum authored
      Summary: [Folly] Let `PriorityUnboundedQueueSet` align its queues, which have extended alignment, even when `std::allocator` does not honor extended alignment.
      
      Reviewed By: magedm
      
      Differential Revision: D19174993
      
      fbshipit-source-id: 0bc0d75c6d239c97b6e1c7380bffff0363008e16
      db5458a7
    • Yedidya Feldblum's avatar
      Let AlignedSysAllocator consider the type's alignment · 0d92b69f
      Yedidya Feldblum authored
      Summary: [Folly] Let AlignedSysAllocator consider the natural or specified alignment of the type for which memory is being allocated, rather than only considering a constant or fixed alignment.
      
      Reviewed By: nbronson
      
      Differential Revision: D19174932
      
      fbshipit-source-id: e8ed0fbaf30d285cadd061d0fe5d69fcbb16f9e2
      0d92b69f
    • Tristan Rice's avatar
      folly: propagate interrupts through thenError · 4762e080
      Tristan Rice authored
      Summary: The tagged/specific exception variant of thenError and deferError propagate interrupts where currently the untagged variant of thenError does not. As far as I can tell this was an oversight. This makes untagged thenError behave as expected.
      
      Reviewed By: yfeldblum, mpark
      
      Differential Revision: D18643814
      
      fbshipit-source-id: 42688c4363de2f6b027766b19276b2e8ec6a48a8
      4762e080
    • Yedidya Feldblum's avatar
      Remove spelled default ctor in AlignedSysAllocator · d62f47c7
      Yedidya Feldblum authored
      Summary: [Folly] Remove spelled default ctor in `AlignedSysAllocator`, which was needed only for gcc49.
      
      Reviewed By: aary
      
      Differential Revision: D19171223
      
      fbshipit-source-id: ee42f6ac188dc896519537870353116c0dfd3acd
      d62f47c7
    • Yedidya Feldblum's avatar
      Extended constructibility for co_error · da24dd6f
      Yedidya Feldblum authored
      Summary:
      [Folly] Extended constructibility for `co_error` - constructible from everything `exception_wrapper` is constructible from, but not default-constructible. This permits:
      
      ```lang=c++
      co_yield folly::coro::co_error(std::runtime_error("foo"));
      ```
      
      Reviewed By: lewissbaker
      
      Differential Revision: D19172210
      
      fbshipit-source-id: df21c4f2a15ad2286e7cb34aae7c1be05e797a94
      da24dd6f
    • Yedidya Feldblum's avatar
      Avoid a too-large pointer literal in StlVectorTest · e6eff650
      Yedidya Feldblum authored
      Summary: [Folly] Avoid a too-large pointer literal in StlVectorTest, keeping the literal value divisible by 8 to avoid ubsan violations.
      
      Reviewed By: igorsugak
      
      Differential Revision: D19170467
      
      fbshipit-source-id: 2c93d2b3d9f7515761668d3364c4b8b5093a6145
      e6eff650
  13. 19 Dec, 2019 1 commit
    • Yedidya Feldblum's avatar
      Only use explicit copy-ctor in to_narrow with C++17 · 09cbf47e
      Yedidya Feldblum authored
      Summary: [Folly] Only use `explicit` copy-ctor in `to_narrow` with C++17 and higher, since C++17 introduces mandatory copy elision and the technique here relies on mandatory copy elision.
      
      Differential Revision: D19175384
      
      fbshipit-source-id: 9d3234a71b1b5e4f31d14137e42dbf3a73c79b2e
      09cbf47e