deleted QSE_FIO_NOCACHE

This commit is contained in:
2011-11-10 15:45:10 +00:00
parent 1e36d2c141
commit 1869cde2dc
3 changed files with 5 additions and 9 deletions

View File

@ -61,8 +61,7 @@ enum qse_fio_open_flag_t
/* hints to OS. harmless(no effect) when used on unsupported platforms */
QSE_FIO_RANDOM = (1 << 26), /* hint that access be random */
QSE_FIO_SEQUENTIAL = (1 << 27), /* hint that access is sequential */
QSE_FIO_NOCACHE = (1 << 28) /* no system I/O cache */
QSE_FIO_SEQUENTIAL = (1 << 27) /* hint that access is sequential */
};
enum qse_fio_std_t

View File

@ -47,7 +47,10 @@ enum qse_sio_open_flag_t
QSE_SIO_NOFOLLOW = QSE_FIO_NOFOLLOW,
QSE_SIO_NOSHRD = QSE_FIO_NOSHRD,
QSE_SIO_NOSHWR = QSE_FIO_NOSHWR
QSE_SIO_NOSHWR = QSE_FIO_NOSHWR,
QSE_SIO_RANDOM = QSE_FIO_RANDOM,
QSE_SIO_SEQUENTIAL = QSE_FIO_SEQUENTIAL
};
typedef qse_fio_off_t qse_sio_pos_t;