From 52d5f405336704ee7f41f5fcf3e05c0736fad15b Mon Sep 17 00:00:00 2001 From: Florian Fischer <florian.fischer@muhq.space> Date: Mon, 2 Aug 2021 13:59:59 +0200 Subject: [PATCH] move aio-* to paio-* to highlight that this uses POSIX aio implemented in glibc --- Makefile | 2 +- aio-sig.c => paio-sig.c | 0 aio-thrd.c => paio-thrd.c | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename aio-sig.c => paio-sig.c (100%) rename aio-thrd.c => paio-thrd.c (100%) diff --git a/Makefile b/Makefile index a9ced29..21b4705 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ BENCH_MAIN := bench.c -SYSCALLS := blocking io-uring io-uring-sqpoll io-uring-no-syscall epoll aio-sig aio-thrd +SYSCALLS := blocking io-uring io-uring-sqpoll io-uring-no-syscall epoll paio-sig paio-thrd OBJ := $(addprefix bench-,$(SYSCALLS)) diff --git a/aio-sig.c b/paio-sig.c similarity index 100% rename from aio-sig.c rename to paio-sig.c diff --git a/aio-thrd.c b/paio-thrd.c similarity index 100% rename from aio-thrd.c rename to paio-thrd.c -- GitLab