diff options
Diffstat (limited to 'test/madvise.c')
-rw-r--r-- | test/madvise.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/madvise.c b/test/madvise.c index c06465f..89057af 100644 --- a/test/madvise.c +++ b/test/madvise.c @@ -104,7 +104,7 @@ static int test_madvise(struct io_uring *ring, const char *filename) return 1; } - buf = io_uring_malloc(FILE_SIZE); + buf = t_malloc(FILE_SIZE); ptr = mmap(NULL, FILE_SIZE, PROT_READ, MAP_PRIVATE, fd, 0); if (ptr == MAP_FAILED) { @@ -159,7 +159,7 @@ int main(int argc, char *argv[]) fname = argv[1]; } else { fname = ".madvise.tmp"; - io_uring_create_file(fname, FILE_SIZE); + t_create_file(fname, FILE_SIZE); } if (io_uring_queue_init(8, &ring, 0)) { |