Remove comments about proposed 'struct ios' features

We don't need anything as fancy as these.
This commit is contained in:
Lassi Kortela 2019-08-26 00:20:50 +03:00
parent 219578cff9
commit d38d99dd87
1 changed files with 0 additions and 10 deletions

10
c/ios.h
View File

@ -40,16 +40,6 @@ struct ios {
// again any number of times. usually only true for files and strings. // again any number of times. usually only true for files and strings.
unsigned char rereadable : 1; 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]; char local[IOS_INLSIZE];
}; };