CircFileRead Sample Application
Description
CircFileRead reads a circular file and outputs the text of the circular file to
the console. To convert a circular file to a normal “flat” file, redirect the
output of ReadCircFile to a file:
C:\> CircFileRead.exe myCircularFile.txt > myFlatFile.txt |
A circular file is similar in concept to a circular buffer; it allows data to be
continually written to disk without taking up too much disk space.
Source Files
CircFileRead.c | CircFile.c | CircFile.h |
|
See Also
MPI Documentation
Trace Module
Sample Applications
Trace1
Trace2