2004-09-28 04:34:51 -04:00
|
|
|
|
|
|
|
/*
|
2004-09-29 12:00:49 -04:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 04:34:51 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-11-10 18:09:22 -03:00
|
|
|
#ifndef _NGX_TIMES_H_INCLUDED_
|
|
|
|
#define _NGX_TIMES_H_INCLUDED_
|
|
|
|
|
|
|
|
|
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
|
2003-11-25 17:44:56 -03:00
|
|
|
void ngx_time_init();
|
2004-01-05 17:55:48 -03:00
|
|
|
void ngx_time_update(time_t s);
|
2004-03-16 03:10:12 -04:00
|
|
|
size_t ngx_http_time(u_char *buf, time_t t);
|
2004-08-28 23:55:41 -04:00
|
|
|
size_t ngx_http_cookie_time(u_char *buf, time_t t);
|
2003-11-13 03:14:05 -03:00
|
|
|
void ngx_gmtime(time_t t, ngx_tm_t *tp);
|
2003-11-10 18:09:22 -03:00
|
|
|
|
2004-06-27 14:01:57 -04:00
|
|
|
#if (NGX_THREADS)
|
|
|
|
ngx_int_t ngx_time_mutex_init(ngx_log_t *log);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (NGX_THREADS && (TIME_T_SIZE > SIG_ATOMIC_T_SIZE))
|
|
|
|
|
|
|
|
#define ngx_time() *ngx_cached_time
|
|
|
|
extern volatile time_t *ngx_cached_time;
|
2003-11-18 18:34:08 -03:00
|
|
|
|
2004-06-27 14:01:57 -04:00
|
|
|
#else
|
2003-11-10 18:09:22 -03:00
|
|
|
|
2004-06-27 14:01:57 -04:00
|
|
|
#define ngx_time() ngx_cached_time
|
2004-04-21 14:54:33 -04:00
|
|
|
extern volatile time_t ngx_cached_time;
|
2004-06-27 14:01:57 -04:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-06-28 12:05:02 -04:00
|
|
|
extern ngx_thread_volatile ngx_str_t ngx_cached_err_log_time;
|
|
|
|
extern ngx_thread_volatile ngx_str_t ngx_cached_http_time;
|
|
|
|
extern ngx_thread_volatile ngx_str_t ngx_cached_http_log_time;
|
2003-11-10 18:09:22 -03:00
|
|
|
|
2004-04-21 14:54:33 -04:00
|
|
|
extern ngx_epoch_msec_t ngx_start_msec;
|
2004-01-29 18:45:01 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* msecs elapsed since ngx_start_msec in the current event cycle,
|
|
|
|
* used in ngx_event_add_timer() and ngx_event_find_timer()
|
|
|
|
*/
|
|
|
|
extern ngx_epoch_msec_t ngx_elapsed_msec;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* msecs elapsed since ngx_start_msec in the previous event cycle,
|
|
|
|
* used in ngx_event_expire_timers()
|
|
|
|
*/
|
|
|
|
extern ngx_epoch_msec_t ngx_old_elapsed_msec;
|
|
|
|
|
|
|
|
|
2003-11-10 18:09:22 -03:00
|
|
|
|
|
|
|
#endif /* _NGX_TIMES_H_INCLUDED_ */
|