os_fsync.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1997-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: os_fsync.c,v 11.15 2002/07/12 18:56:54 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <fcntl.h> /* XXX: Required by __hp3000s900 */
  14. #include <unistd.h>
  15. #include <string.h>
  16. #endif
  17. #include "db_int.h"
  18. /*
  19.  * __os_fsync --
  20.  * Flush a file descriptor.
  21.  *
  22.  * PUBLIC: int __os_fsync __P((DB_ENV *, DB_FH *));
  23.  */
  24. int
  25. __os_fsync(dbenv, fhp)
  26. DB_ENV *dbenv;
  27. DB_FH *fhp;
  28. {
  29. BOOL success;
  30. int ret;
  31. /*
  32.  * Do nothing if the file descriptor has been marked as not requiring
  33.  * any sync to disk.
  34.  */
  35. if (F_ISSET(fhp, DB_FH_NOSYNC))
  36. return (0);
  37. ret = 0;
  38. do {
  39. if (DB_GLOBAL(j_fsync) != NULL)
  40. success = (DB_GLOBAL(j_fsync)(fhp->fd) == 0);
  41. else {
  42. success = FlushFileBuffers(fhp->handle);
  43. if (!success)
  44. __os_set_errno(__os_win32_errno());
  45. }
  46. } while (!success && (ret = __os_get_errno()) == EINTR);
  47. if (ret != 0)
  48. __db_err(dbenv, "fsync %s", strerror(ret));
  49. return (ret);
  50. }