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
73806f74
Commit
73806f74
authored
Dec 31, 2019
by
hayashier
Committed by
antirez
Feb 27, 2020
Browse files
fix typo from fss to rss
parent
b6129f86
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/object.c
View file @
73806f74
...
@@ -1102,13 +1102,13 @@ sds getMemoryDoctorReport(void) {
...
@@ -1102,13 +1102,13 @@ sds getMemoryDoctorReport(void) {
num_reports
++
;
num_reports
++
;
}
}
/* Allocator
f
ss is higher than 1.1 and 10MB ? */
/* Allocator
r
ss is higher than 1.1 and 10MB ? */
if
(
mh
->
allocator_rss
>
1
.
1
&&
mh
->
allocator_rss_bytes
>
10
<<
20
)
{
if
(
mh
->
allocator_rss
>
1
.
1
&&
mh
->
allocator_rss_bytes
>
10
<<
20
)
{
high_alloc_rss
=
1
;
high_alloc_rss
=
1
;
num_reports
++
;
num_reports
++
;
}
}
/* Non-Allocator
f
ss is higher than 1.1 and 10MB ? */
/* Non-Allocator
r
ss is higher than 1.1 and 10MB ? */
if
(
mh
->
rss_extra
>
1
.
1
&&
mh
->
rss_extra_bytes
>
10
<<
20
)
{
if
(
mh
->
rss_extra
>
1
.
1
&&
mh
->
rss_extra_bytes
>
10
<<
20
)
{
high_proc_rss
=
1
;
high_proc_rss
=
1
;
num_reports
++
;
num_reports
++
;
...
...
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