fix comment on not storing aiocb in struct File

This was SVN commit r933.
This commit is contained in:
janwas 2004-08-07 13:44:28 +00:00
parent 09cf9dce75
commit 58a0437e66

View File

@ -510,9 +510,8 @@ int file_close(File* const f)
struct IO
{
aiocb* cb;
// large (144 bytes) on Linux
// small enough ATM to store here. if not (=> assert triggered),
// allocate in IO_init (currently don't do so to reduce allocations).
// large (144 bytes) on Linux; cannot store here.
// allocated in IO_init.
size_t padding;
size_t user_size;