os_errno.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 1999, 2000
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: os_errno.c,v 11.3 2000/02/14 03:00:05 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <errno.h>
  13. #endif
  14. #include "db_int.h"
  15. /*
  16.  * __os_get_errno --
  17.  * Return the value of errno.
  18.  *
  19.  * PUBLIC: int __os_get_errno __P((void));
  20.  */
  21. int
  22. __os_get_errno()
  23. {
  24. /* This routine must be able to return the same value repeatedly. */
  25. return (errno);
  26. }
  27. /*
  28.  * __os_set_errno --
  29.  * Set the value of errno.
  30.  *
  31.  * PUBLIC: void __os_set_errno __P((int));
  32.  */
  33. void
  34. __os_set_errno(evalue)
  35. int evalue;
  36. {
  37. errno = evalue;
  38. }