Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
meinheld / meinheld / server / time_cache.h
Size: Mime:
#ifndef TIMEOUT_CACHE_H
#define TIMEOUT_CACHE_H

#include "meinheld.h"

typedef struct {
    time_t sec;
    uintptr_t msec;
    int   gmtoff;
} cache_time_t;

void cache_time_init(void);

void cache_time_update(void);

extern volatile uintptr_t current_msec;
extern volatile char *err_log_time;
extern volatile char *http_time;
extern volatile char *http_log_time;

#endif