Skip to content
Snippets Groups Projects
Commit dce8876d authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

unix: file: No fsync() on Windows.

parent ac736f15
No related branches found
No related tags found
No related merge requests found
......@@ -83,8 +83,12 @@ STATIC mp_int_t fdfile_write(mp_obj_t o_in, const void *buf, mp_uint_t size, int
}
STATIC mp_obj_t fdfile_flush(mp_obj_t self_in) {
#ifndef _WIN32
mp_obj_fdfile_t *self = self_in;
fsync(self->fd);
#else
//TODO
#endif
return mp_const_none;
}
STATIC MP_DEFINE_CONST_FUN_OBJ_1(fdfile_flush_obj, fdfile_flush);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment