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
a72c0423
Commit
a72c0423
authored
Sep 13, 2011
by
antirez
Browse files
debug message removed
parent
c8d0013f
Changes
2
Show whitespace changes
Inline
Side-by-side
src/Makefile
View file @
a72c0423
...
...
@@ -84,6 +84,8 @@ ae_select.o: ae_select.c
anet.o
:
anet.c fmacros.h anet.h
aof.o
:
aof.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h
\
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
bio.o
:
bio.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h
\
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h bio.h
config.o
:
config.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h
\
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
db.o
:
db.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h
\
...
...
@@ -113,7 +115,8 @@ redis-check-dump.o: redis-check-dump.c lzf.h
redis-cli.o
:
redis-cli.c fmacros.h version.h ../deps/hiredis/hiredis.h
\
sds.h zmalloc.h ../deps/linenoise/linenoise.h help.h
redis.o
:
redis.c redis.h fmacros.h config.h ae.h sds.h dict.h adlist.h
\
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h slowlog.h
zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h slowlog.h
\
bio.h
release.o
:
release.c release.h
replication.o
:
replication.c redis.h fmacros.h config.h ae.h sds.h dict.h
\
adlist.h zmalloc.h anet.h zipmap.h ziplist.h intset.h version.h util.h
...
...
src/bio.c
View file @
a72c0423
...
...
@@ -100,7 +100,6 @@ void *bioProcessBackgroundJobs(void *arg) {
/* Process the job accordingly to its type. */
if
(
job
->
type
==
REDIS_BIO_CLOSE_FILE
)
{
printf
(
"Closing file...
\n
"
);
close
((
long
)
job
->
data
);
}
else
{
redisPanic
(
"Wrong job type in bioProcessBackgroundJobs()."
);
...
...
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