summaryrefslogtreecommitdiff
path: root/src/common/util_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/util_log.c')
-rw-r--r--src/common/util_log.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/common/util_log.c b/src/common/util_log.c
new file mode 100644
index 00000000..d158d3f0
--- /dev/null
+++ b/src/common/util_log.c
@@ -0,0 +1,45 @@
+/*-
+ * See the file LICENSE for redistribution information.
+ *
+ * Copyright (c) 2000, 2012 Oracle and/or its affiliates. All rights reserved.
+ *
+ * $Id$
+ */
+
+#include "db_config.h"
+
+#include "db_int.h"
+
+/*
+ * __db_util_logset --
+ * Log that we're running.
+ *
+ * PUBLIC: int __db_util_logset __P((const char *, char *));
+ */
+int
+__db_util_logset(progname, fname)
+ const char *progname;
+ char *fname;
+{
+ pid_t pid;
+ FILE *fp;
+ time_t now;
+ char time_buf[CTIME_BUFLEN];
+
+ if ((fp = fopen(fname, "w")) == NULL)
+ goto err;
+
+ (void)time(&now);
+
+ __os_id(NULL, &pid, NULL);
+ fprintf(fp,
+ "%s: %lu %s", progname, (u_long)pid, __os_ctime(&now, time_buf));
+
+ if (fclose(fp) == EOF)
+ goto err;
+
+ return (0);
+
+err: fprintf(stderr, "%s: %s: %s\n", progname, fname, strerror(errno));
+ return (1);
+}