#include <nitro/fs.h>
BOOL FS_WaitAsync( FSFile *p_file );
p_file | Address of the FSFile structure. |
If the asynchronous process is correctly completed, it returns a value of TRUE. Otherwise it returns a value of FALSE.
If the specified file is currently executing an asynchronous process, this function waits for it to complete. It returns a BOOLEAN value to indicate if the last requested asynchronous process has completed correctly.
If the file is already closed, or if some illegal process has been performed, it returns a value of FALSE.
This function cannot be called from the interrupt handler (IRQ mode).
Also note that in some cases processing may not end if interrupts are left prohibited.
FSFile FS_ReadFileAsync FS_IsBusy
2004/11/02 Corrected the function declaration.
2004/09/24 Added text under Caution regarding the conditions for calling this function.
2004/06/15 Revised the description of the operation.
2004/05/14 Initial version.
CONFIDENTIAL