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

MySQL数据库

开发平台:

Visual C++

  1. /*-
  2.  * See the file LICENSE for redistribution information.
  3.  *
  4.  * Copyright (c) 2000-2002
  5.  * Sleepycat Software.  All rights reserved.
  6.  */
  7. #include "db_config.h"
  8. #ifndef lint
  9. static const char revid[] = "$Id: util_log.c,v 1.11 2002/02/01 18:15:30 bostic Exp $";
  10. #endif /* not lint */
  11. #ifndef NO_SYSTEM_INCLUDES
  12. #include <sys/types.h>
  13. #include <stdlib.h>
  14. #if TIME_WITH_SYS_TIME
  15. #include <sys/time.h>
  16. #include <time.h>
  17. #else
  18. #if HAVE_SYS_TIME_H
  19. #include <sys/time.h>
  20. #else
  21. #include <time.h>
  22. #endif
  23. #endif
  24. #include <string.h>
  25. #include <unistd.h>
  26. #endif
  27. #include "db_int.h"
  28. /*
  29.  * __db_util_logset --
  30.  * Log that we're running.
  31.  *
  32.  * PUBLIC: int __db_util_logset __P((const char *, char *));
  33.  */
  34. int
  35. __db_util_logset(progname, fname)
  36. const char *progname;
  37. char *fname;
  38. {
  39. FILE *fp;
  40. time_t now;
  41. u_int32_t id;
  42. if ((fp = fopen(fname, "w")) == NULL)
  43. goto err;
  44. (void)time(&now);
  45. __os_id(&id);
  46. fprintf(fp, "%s: %lu %s", progname, (u_long)id, ctime(&now));
  47. if (fclose(fp) == EOF)
  48. goto err;
  49. return (0);
  50. err: fprintf(stderr, "%s: %s: %sn", progname, fname, strerror(errno));
  51. return (1);
  52. }