Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
616da658
Commit
616da658
authored
Jun 20, 2011
by
antirez
Browse files
comment lines in config.h capitalized
parent
5d5fe340
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/config.h
View file @
616da658
...
...
@@ -5,7 +5,7 @@
#include <AvailabilityMacros.h>
#endif
/*
d
efine redis_fstat to fstat or fstat64() */
/*
D
efine redis_fstat to fstat or fstat64() */
#if defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6)
#define redis_fstat fstat64
#define redis_stat stat64
...
...
@@ -14,22 +14,22 @@
#define redis_stat stat
#endif
/*
t
est for proc filesystem */
/*
T
est for proc filesystem */
#ifdef __linux__
#define HAVE_PROCFS 1
#endif
/*
t
est for task_info() */
/*
T
est for task_info() */
#if defined(__APPLE__)
#define HAVE_TASKINFO 1
#endif
/*
t
est for backtrace() */
/*
T
est for backtrace() */
#if defined(__APPLE__) || defined(__linux__)
#define HAVE_BACKTRACE 1
#endif
/*
t
est for polling API */
/*
T
est for polling API */
#ifdef __linux__
#define HAVE_EPOLL 1
#endif
...
...
@@ -38,7 +38,7 @@
#define HAVE_KQUEUE 1
#endif
/*
d
efine aof_fsync to fdatasync() in Linux and fsync() for all the rest */
/*
D
efine aof_fsync to fdatasync() in Linux and fsync() for all the rest */
#ifdef __linux__
#define aof_fsync fdatasync
#else
...
...
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