From de746e82320ebed3f7b02820728fa6eb035bc313 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 24 Jan 2019 14:39:12 +0100 Subject: sys/linux: update TODO comments Change TODO comments that refer to missing description language features to NEED comments as that it's easier to grep for them. Remove some outdated comments. Fix 2 easy fixable TODOs. --- sys/linux/aio.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sys/linux/aio.txt') diff --git a/sys/linux/aio.txt b/sys/linux/aio.txt index cc513b8dd..950a1e47e 100644 --- a/sys/linux/aio.txt +++ b/sys/linux/aio.txt @@ -9,8 +9,7 @@ io_setup(n int32, ctx ptr[out, io_ctx]) io_destroy(ctx io_ctx) io_getevents(ctx io_ctx, min_nr intptr, nr len[events], events ptr[out, array[io_event]], timeout ptr[in, timespec, opt]) io_pgetevents(ctx io_ctx, min_nr intptr, nr len[events], events ptr[out, array[io_event]], timeout ptr[in, timespec, opt], usig ptr[in, sigset_size, opt]) -# TODO: kernel identifies requets by address, so pointers passed to io_submit -# need to be forwarded to io_cancel somehow. +# NEED: kernel identifies requets by address, so pointers passed to io_submit need to be forwarded to io_cancel somehow. io_submit(ctx io_ctx, nr len[iocbpp], iocbpp ptr[in, array[ptr[in, iocb]]]) io_cancel(ctx io_ctx, iocb ptr[in, iocb], res ptr[out, io_event]) -- cgit mrf-deployment