diff src/os/unix/ngx_time.c @ 0:f0b350454894 NGINX_0_1_0

nginx 0.1.0 *) The first public version.
author Igor Sysoev <http://sysoev.ru>
date Mon, 04 Oct 2004 00:00:00 +0400
parents
children 6f8b0dc0f8dd
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/src/os/unix/ngx_time.c
@@ -0,0 +1,31 @@
+
+/*
+ * Copyright (C) Igor Sysoev
+ */
+
+
+#include <ngx_config.h>
+#include <ngx_core.h>
+
+
+void ngx_localtime(ngx_tm_t *tm)
+{
+#if (HAVE_LOCALTIME_R)
+    time_t     now;
+
+    now = ngx_time();
+    localtime_r(&now, tm);
+
+#else
+    time_t     now;
+    ngx_tm_t  *t;
+
+    now = ngx_time();
+    t = localtime(&now);
+    *tm = *t;
+
+#endif
+
+    tm->ngx_tm_mon++;
+    tm->ngx_tm_year += 1900;
+}