Fabian Keßler
Fabian Keßler
To use kissfft as cmake subproject, all headers should be moved into either `/include/kissfft` or `/kissfft` This has the benefit, that all headers has to be included in the namespace...
change ``` EXTERN matvar_t *Mat_VarCreate(const char *name,enum matio_classes class_type, enum matio_types data_type,int rank,size_t *dims, void *data,int opt); ``` To ``` EXTERN matvar_t *Mat_VarCreate(const char *name, enum matio_classes class_type, enum matio_types...
Fixes some minor language related bugs, which prevented the compilation via msvc.
I have several issues with the build binaries and their pkg-config-files (in CMake): First, the shipped pkg-config produces broken paths (for CMake), somehow it tries to interpret the backslashes as...
Having the CPU: ``` AMD Ryzen 9 3900X 12-Core Processor Base speed: 3.80 GHz Sockets: 1 Cores: 12 Logical processors: 24 Virtualization: Disabled Hyper-V support: Yes L1 cache: 768 KB...
ctsTraffic.exe crashes, when I try to recv 10 GBits/s with an TU of 1436 bytes (no jumbo packages and IP fragmentation) and e.g. 10 sockets (>2). Executing ctsTraffic in the...
Using UDP as protocol; when the client crashes, the server does not stop automatically (not even after a specific amount of time/packages). It is also not possible to kill the...
This adds a more general approach, to check for c++20 coroutines, which takes the feature test macros into account, defined since c++20: Proposal: https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p0912r5.html cppreference: https://en.cppreference.com/w/User:D41D8CD98F/feature_testing_macros#C.2B.2B20 I've kept the old...
When compiling ASIO via clang-cl version 15.0 on Windows, the ASIO config sets `ASIO_HAS_CO_AWAIT` to zero, even if clang actually has it. The reason is in [line 2024](https://github.com/boostorg/asio/blob/0af7858e7b5603a2415a30b69e16c7ef1d47a5e9/include/boost/asio/detail/config.hpp#L2045-L2070): `if (_MSC_VER...