address spelling issues
This commit is contained in:
@ -1012,6 +1012,7 @@ fexternal
|
|||||||
Fexternal
|
Fexternal
|
||||||
ffield
|
ffield
|
||||||
ffl
|
ffl
|
||||||
|
fflush
|
||||||
ffmpeg
|
ffmpeg
|
||||||
FFmpeg
|
FFmpeg
|
||||||
ffplay
|
ffplay
|
||||||
|
|||||||
@ -5442,8 +5442,8 @@ void lammps_fix_external_set_vector(void *handle, const char *id, int idx, doubl
|
|||||||
/** Flush output buffers
|
/** Flush output buffers
|
||||||
|
|
||||||
\verbatim embed:rst
|
\verbatim embed:rst
|
||||||
This function can be used to force output to be written to screen and logfiles
|
This function can be used to flush buffered output to be written to screen
|
||||||
to simplify capturing output from LAMMPS library calls.
|
and logfile pointers to simplify capturing output from LAMMPS library calls.
|
||||||
\endverbatim
|
\endverbatim
|
||||||
*
|
*
|
||||||
* \param handle pointer to a previously created LAMMPS instance cast to ``void *``.
|
* \param handle pointer to a previously created LAMMPS instance cast to ``void *``.
|
||||||
|
|||||||
@ -76,8 +76,10 @@ namespace utils {
|
|||||||
|
|
||||||
/*! Flush output buffers
|
/*! Flush output buffers
|
||||||
*
|
*
|
||||||
* This function calls fflush on screen and logfile FILE pointers
|
* This function calls fflush() on screen and logfile FILE pointers
|
||||||
* if available
|
* if available and thus tells the operating system to output all
|
||||||
|
* currently buffered data. This is local operation and independent
|
||||||
|
* from buffering by a file system or an MPI library.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void flush_buffers(LAMMPS *lmp);
|
void flush_buffers(LAMMPS *lmp);
|
||||||
|
|||||||
Reference in New Issue
Block a user