diff options
author | Mark Salyzyn <salyzyn@google.com> | 2016-12-14 12:52:50 -0800 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2016-12-21 21:36:14 +0000 |
commit | fc148f7f3371ccc0584261dd0b2462c09798d4f8 (patch) | |
tree | 7726843bc189788cbab5b1ca7342ca76e613eea3 /libutils/Unicode.cpp | |
parent | 8a1c4b85303cd636f4920f99093063f57ecc8e73 (diff) |
liblog: add IF_ALOG_RATELIMIT
IF_ALOG_RATELIMIT()
ALOGE("Only one message globally using IF_ALOG_RATELIMIT()"
" in the process may appear ever ten seconds,"
" (%s)", strerror(errno));
static time_t last; /* initial state zero */
IF_ALOG_RATELIMIT_LOCAL(60, &last)
ALOGE("Only one message locally may appear every minute,"
" (%s)", strerror(errno));
These new calls are guaranteed not to affect the value of a
non-zero errno to simplify logging of errors. However, the
ALOGE calls in the above examples may update the errno value
upon their return.
Test: gTest liblog-unit-tests --gtest_filter=liblog.__android_log_ratelimit
Bug: 33535908
Change-Id: Id8cc192fc7d14504ffd418933cf88ae945c089f2
Diffstat (limited to 'libutils/Unicode.cpp')
0 files changed, 0 insertions, 0 deletions