duk
duk
A very preliminary attempt at abusing virtual memory to allow for dynamically-"resizable" pools. At the moment eligible pools need to be manually specified with a hash and size/growth policies. Can...
1. Make CMake work with OSX 2. Add needed third-party libraries TODO: Will not compile because of problems with std::chrono.
Vcpkg breaks stuff because of OpenSSL. Fun. Closes #2155
[This line](https://github.com/manticoresoftware/manticoresearch-net/blob/d0c115418e69be1124b5974013834f007e56c869/src/ManticoreSearch/Api/SearchApi.cs#L570) causes an exception to be thrown if the value passed to a `RangeFilterValue` does not fit in a 32-bit integer. ```cs using ManticoreSearch.Api; using ManticoreSearch.Model; public static class...
These buffers are expected to be manipulated by multiple threads in these functions, so we need to mark them as volatile. GCC can and will optimize away things we don't...
### Description The `rptr` and `wptr` variables [here](https://github.com/lowRISC/opentitan/blob/ae8ac572e793f34f457d08c9ce03db3644c49f5a/hw/dv/dpi/common/tcp_server/tcp_server.c#L32) are missing `volatile`, so GCC will optimize the while loop in [tcp_server_put_byte](https://github.com/lowRISC/opentitan/blob/ae8ac572e793f34f457d08c9ce03db3644c49f5a/hw/dv/dpi/common/tcp_server/tcp_server.c#L65) to a branch and an infinite loop when compiling with...