1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00

some include fixes

This commit is contained in:
Desour 2024-10-04 03:19:06 +02:00
parent 22b4f3becf
commit 668d22f39f
3 changed files with 14 additions and 7 deletions

View file

@ -17,12 +17,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "benchmark_setup.h"
#include "catch.h"
#include "threading/ipc_channel.h"
#include <thread>
#include "log.h"
TEST_CASE("benchmark_ipc_channel")
{
// same as in test_threading.cpp (TODO: remove duplication)
@ -80,13 +78,23 @@ TEST_CASE("benchmark_ipc_channel")
}
});
BENCHMARK("simple_call", i) {
BENCHMARK("simple_call_1", i) {
char buf[16] = {};
buf[i & 0xf] = i;
end_a.exchange(buf, 16);
return reinterpret_cast<const u8 *>(end_a.getRecvData())[i & 0xf];
};
BENCHMARK("simple_call_1000", i) {
char buf[16] = {};
buf[i & 0xf] = i;
for (int k = 0; k < 1000; ++k) {
buf[0] = k & 0xff;
end_a.exchange(buf, 16);
}
return reinterpret_cast<const u8 *>(end_a.getRecvData())[i & 0xf];
};
// stop thread_b
end_a.exchange(nullptr, 0);
REQUIRE(end_a.getRecvSize() == 0);

View file

@ -24,10 +24,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "porting.h"
#include <cerrno>
#include <utility>
#include <cstring>
#if defined(IPC_CHANNEL_IMPLEMENTATION_LINUX_FUTEX)
#include <linux/futex.h>
#include <cstring>
#include <sys/syscall.h>
#include <sys/wait.h>
#if defined(__i386__) || defined(__x86_64__)

View file

@ -26,6 +26,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <string>
#include <type_traits>
#include <vector>
#include <atomic>
#if defined(_WIN32)
#define IPC_CHANNEL_IMPLEMENTATION_WIN32
@ -37,8 +38,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#if defined(IPC_CHANNEL_IMPLEMENTATION_WIN32)
#include <windows.h>
#elif defined(IPC_CHANNEL_IMPLEMENTATION_LINUX_FUTEX)
#include <atomic>
#elif defined(IPC_CHANNEL_IMPLEMENTATION_POSIX)
#include <pthread.h>
#endif