|
| iMatix home page | << | < | > | >> |
SMTVersion 2.81 |
#include "smtlib.h" int lazy_close (int handle)
Calls the standard close() function without blocking. Returns 0 when the call succeeds, else returns -1 and sets errno to the cause of the error. If the call would block, returns -1, sets errno to EAGAIN, and calls recycle module() to re-execute the current dialog module automatically. You can override this behavious by calling recycle module (FALSE) after the return. Sets the global variable "io_completed" to TRUE if the i/o access completed, with or without an error.
{
int rc;
#if (defined (SMT_TRACE))
trace ("lazy_close: handle=%d", handle);
#endif
rc = close (handle);
set_io_completed (rc);
return (rc);
}
| | << | < | > | >> |
|