Unverified Commit b1db7acf authored by Salvatore Sanfilippo's avatar Salvatore Sanfilippo Committed by GitHub
Browse files

Merge pull request #6980 from fengpf/fix_latency_comments

fix comments in latency.c
parents 5babacad a5f50910
...@@ -32,3 +32,4 @@ deps/lua/src/liblua.a ...@@ -32,3 +32,4 @@ deps/lua/src/liblua.a
*.dSYM *.dSYM
Makefile.dep Makefile.dep
.vscode/* .vscode/*
.idea/*
...@@ -85,7 +85,7 @@ int THPGetAnonHugePagesSize(void) { ...@@ -85,7 +85,7 @@ int THPGetAnonHugePagesSize(void) {
/* ---------------------------- Latency API --------------------------------- */ /* ---------------------------- Latency API --------------------------------- */
/* Latency monitor initialization. We just need to create the dictionary /* Latency monitor initialization. We just need to create the dictionary
* of time series, each time serie is craeted on demand in order to avoid * of time series, each time serie is created on demand in order to avoid
* having a fixed list to maintain. */ * having a fixed list to maintain. */
void latencyMonitorInit(void) { void latencyMonitorInit(void) {
server.latency_events = dictCreate(&latencyTimeSeriesDictType,NULL); server.latency_events = dictCreate(&latencyTimeSeriesDictType,NULL);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment