Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
e270a7fa
Commit
e270a7fa
authored
Mar 08, 2011
by
antirez
Browse files
removed useless call
parent
3a21cb99
Changes
1
Show whitespace changes
Inline
Side-by-side
src/dscache.c
View file @
e270a7fa
...
@@ -587,8 +587,6 @@ void queueIOJob(iojob *j) {
...
@@ -587,8 +587,6 @@ void queueIOJob(iojob *j) {
redisLog
(
REDIS_DEBUG
,
"Queued IO Job %p type %d about key '%s'
\n
"
,
redisLog
(
REDIS_DEBUG
,
"Queued IO Job %p type %d about key '%s'
\n
"
,
(
void
*
)
j
,
j
->
type
,
(
char
*
)
j
->
key
->
ptr
);
(
void
*
)
j
,
j
->
type
,
(
char
*
)
j
->
key
->
ptr
);
listAddNodeTail
(
server
.
io_newjobs
,
j
);
listAddNodeTail
(
server
.
io_newjobs
,
j
);
if
(
server
.
io_active_threads
<
server
.
vm_max_threads
)
spawnIOThread
();
}
}
/* Consume all the IO scheduled operations, and all the thread IO jobs
/* Consume all the IO scheduled operations, and all the thread IO jobs
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment