os_rename.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_rename.c,v 11.12 2002/07/12 18:56:52 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <string.h>
  14. #include <unistd.h>
  15. #endif
  16. #include "db_int.h"
  17. /*
  18.  * __os_rename --
  19.  * Rename a file.  If flags is non-zero, then errors are OK and we
  20.  * should not output an error message.
  21.  *
  22.  * PUBLIC: int __os_rename __P((DB_ENV *,
  23.  * PUBLIC:    const char *, const char *, u_int32_t));
  24.  */
  25. int
  26. __os_rename(dbenv, old, new, flags)
  27. DB_ENV *dbenv;
  28. const char *old, *new;
  29. u_int32_t flags;
  30. {
  31. int ret;
  32. do {
  33. ret = DB_GLOBAL(j_rename) != NULL ?
  34.     DB_GLOBAL(j_rename)(old, new) : rename(old, new);
  35. } while (ret != 0 && (ret = __os_get_errno()) == EINTR);
  36. if (ret != 0 && flags == 0)
  37. __db_err(dbenv, "rename %s %s: %s", old, new, strerror(ret));
  38. return (ret);
  39. }