diff options
author | Jens Axboe <axboe@kernel.dk> | 2021-02-24 07:12:47 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2021-02-24 07:12:47 -0700 |
commit | d84d90108a1de9caf7636adcc523d451a56dd275 (patch) | |
tree | 117e67c2d75b314dcfdd37db8590302e2925099d /test/short-read.c | |
parent | b6dfe23e68bfa23e56a2a8798f9788708892abb2 (diff) | |
download | liburing-d84d90108a1de9caf7636adcc523d451a56dd275.tar.gz liburing-d84d90108a1de9caf7636adcc523d451a56dd275.tar.bz2 |
helpers: prefix any helper with t_ instead of io_uring_
As brought up in an issue, this makes it confusing as to what could
potentially be liburing functions. Make it clear that these are test
helpers, hence use the t_ prefix for them.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test/short-read.c')
-rw-r--r-- | test/short-read.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/short-read.c b/test/short-read.c index c839799..02eee04 100644 --- a/test/short-read.c +++ b/test/short-read.c @@ -26,10 +26,10 @@ int main(int argc, char *argv[]) if (argc > 1) return 0; - vec.iov_base = io_uring_malloc(BUF_SIZE); + vec.iov_base = t_malloc(BUF_SIZE); vec.iov_len = BUF_SIZE; - io_uring_create_file(".short-read", FILE_SIZE); + t_create_file(".short-read", FILE_SIZE); fd = open(".short-read", O_RDONLY); save_errno = errno; |