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
a3b0d863
Commit
a3b0d863
authored
Dec 31, 2019
by
hayashier
Browse files
fix typo from fss to rss
parent
6e4f70b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/object.c
View file @
a3b0d863
...
@@ -1119,13 +1119,13 @@ sds getMemoryDoctorReport(void) {
...
@@ -1119,13 +1119,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