15 lines
		
	
	
		
			361 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			361 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "fs.h"
 | 
						|
 | 
						|
 | 
						|
/*===========================================================================*
 | 
						|
 *				fs_sync					     *
 | 
						|
 *===========================================================================*/
 | 
						|
PUBLIC int fs_sync(message *fs_m_in, message *fs_m_out)
 | 
						|
{
 | 
						|
/* Perform the sync() system call.  No-op on this FS. */
 | 
						|
 | 
						|
  return(OK);		/* sync() can't fail */
 | 
						|
}
 | 
						|
 | 
						|
 |