sync(2) — System Calls
OSF
NAME
sync − Updates all file systems
SYNOPSIS
void sync ( void );
DESCRIPTION
The sync() function causes all information in memory that should be on disk to be written out. The writing, although scheduled, is not necessarily complete upon return from the sync() function. Types of information to be written include modified superblocks, inodes, data blocks, and indirect blocks.
The sync() function should be used by programs that examine a file system, such as the df command and the fsck command.
RELATED INFORMATION
Functions: fsync(2)
Commands: sync(1)