2009-12-20 21:41:50 +01:00
|
|
|
#include "fs.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*===========================================================================*
|
|
|
|
* fs_sync *
|
|
|
|
*===========================================================================*/
|
2010-07-15 15:39:57 +02:00
|
|
|
PUBLIC int fs_sync(message *fs_m_in, message *fs_m_out)
|
2009-12-20 21:41:50 +01:00
|
|
|
{
|
|
|
|
/* Perform the sync() system call. No-op on this FS. */
|
|
|
|
|
|
|
|
return(OK); /* sync() can't fail */
|
|
|
|
}
|
|
|
|
|
|
|
|
|