Support select in libc VFS plugin by read_ready()

This commit is contained in:
Christian Helmuth
2017-02-01 11:28:15 +01:00
committed by Norman Feske
parent ba1bd071df
commit f9389109bf
22 changed files with 174 additions and 30 deletions

View File

@ -98,6 +98,8 @@ class Vfs::Rtc_file_system : public Single_file_system
return READ_OK;
}
bool read_ready(Vfs_handle *) override { return true; }
};
#endif /* _INCLUDE__VFS__RTC_FILE_SYSTEM_H_ */