From d38d99dd8748c4ad98a4dc2921e0be0938364065 Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Mon, 26 Aug 2019 00:20:50 +0300 Subject: [PATCH] Remove comments about proposed 'struct ios' features We don't need anything as fancy as these. --- c/ios.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/c/ios.h b/c/ios.h index aec3033..16ce65b 100644 --- a/c/ios.h +++ b/c/ios.h @@ -40,16 +40,6 @@ struct ios { // again any number of times. usually only true for files and strings. unsigned char rereadable : 1; - // this enables "stenciled writes". you can alternately write and - // seek without flushing in between. this performs read-before-write - // to populate the buffer, so "rereadable" capability is required. - // this is off by default. - // unsigned char stenciled:1; - - // request durable writes (fsync) - // unsigned char durable:1; - - // todo: mutex char local[IOS_INLSIZE]; };