Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
cdb41dc0
Commit
cdb41dc0
authored
7 years ago
by
Craig Tiller
Browse files
Options
Downloads
Patches
Plain Diff
Fixes
parent
2a505cbe
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/core/lib/iomgr/timer_generic.c
+2
-2
2 additions, 2 deletions
src/core/lib/iomgr/timer_generic.c
src/core/lib/iomgr/timer_manager.c
+5
-1
5 additions, 1 deletion
src/core/lib/iomgr/timer_manager.c
src/core/lib/support/log.c
+3
-3
3 additions, 3 deletions
src/core/lib/support/log.c
with
10 additions
and
6 deletions
src/core/lib/iomgr/timer_generic.c
+
2
−
2
View file @
cdb41dc0
...
...
@@ -433,7 +433,7 @@ static grpc_timer_check_result run_some_expired_timers(grpc_exec_ctx *exec_ctx,
gpr_tls_set
(
&
g_last_seen_min_timer
,
min_timer
);
if
(
now
<
min_timer
)
{
if
(
next
!=
NULL
)
*
next
=
GPR_MIN
(
*
next
,
min_timer
);
return
0
;
return
GRPC_TIMERS_CHECKED_AND_EMPTY
;
}
if
(
gpr_spinlock_trylock
(
&
g_shared_mutables
.
checker_mu
))
{
...
...
@@ -553,7 +553,7 @@ grpc_timer_check_result grpc_timer_check(grpc_exec_ctx *exec_ctx,
gpr_asprintf
(
&
next_str
,
"%"
PRId64
".%09d [%"
PRIdPTR
"]"
,
next
->
tv_sec
,
next
->
tv_nsec
,
next_atm
);
}
gpr_log
(
GPR_DEBUG
,
"TIMER CHECK END:
%d timers triggere
d; next=%s"
,
r
,
gpr_log
(
GPR_DEBUG
,
"TIMER CHECK END:
r=%
d; next=%s"
,
r
,
next_str
);
gpr_free
(
next_str
);
}
...
...
This diff is collapsed.
Click to expand it.
src/core/lib/iomgr/timer_manager.c
+
5
−
1
View file @
cdb41dc0
...
...
@@ -158,7 +158,8 @@ static bool wait_until(gpr_timespec next) {
// figure stuff out instead of incurring a wakeup)
my_timed_waiter_generation
=
++
g_timed_waiter_generation
;
if
(
GRPC_TRACER_ON
(
grpc_timer_check_trace
))
{
gpr_log
(
GPR_DEBUG
,
"sleep for a while"
);
gpr_timespec
wait_time
=
gpr_time_sub
(
next
,
gpr_now
(
GPR_CLOCK_MONOTONIC
));
gpr_log
(
GPR_DEBUG
,
"sleep for a %"
PRId64
".%09d seconds"
,
wait_time
.
tv_sec
,
wait_time
.
tv_nsec
);
}
}
else
{
next
=
inf_future
;
...
...
@@ -207,6 +208,9 @@ static void timer_main_loop(grpc_exec_ctx *exec_ctx) {
Consequently, we can just sleep forever here and be happy at some
saved wakeup cycles. */
if
(
GRPC_TRACER_ON
(
grpc_timer_check_trace
))
{
gpr_log
(
GPR_DEBUG
,
"timers not checked: expect another thread to"
);
}
next
=
inf_future
;
/* fall through */
case
GRPC_TIMERS_CHECKED_AND_EMPTY
:
...
...
This diff is collapsed.
Click to expand it.
src/core/lib/support/log.c
+
3
−
3
View file @
cdb41dc0
...
...
@@ -43,7 +43,7 @@
#include
<string.h>
extern
void
gpr_default_log
(
gpr_log_func_args
*
args
);
static
gpr_
log_func
g_log_func
=
gpr_default_log
;
static
gpr_
atm
g_log_func
=
(
gpr_atm
)
gpr_default_log
;
static
gpr_atm
g_min_severity_to_print
=
GPR_LOG_VERBOSITY_UNSET
;
const
char
*
gpr_log_severity_string
(
gpr_log_severity
severity
)
{
...
...
@@ -70,7 +70,7 @@ void gpr_log_message(const char *file, int line, gpr_log_severity severity,
lfargs
.
line
=
line
;
lfargs
.
severity
=
severity
;
lfargs
.
message
=
message
;
g_log_func
(
&
lfargs
);
((
gpr_log_func
)
gpr_atm_no_barrier_load
(
&
g_log_func
))
(
&
lfargs
);
}
void
gpr_set_log_verbosity
(
gpr_log_severity
min_severity_to_print
)
{
...
...
@@ -99,5 +99,5 @@ void gpr_log_verbosity_init() {
}
void
gpr_set_log_function
(
gpr_log_func
f
)
{
g
_log_func
=
f
?
f
:
gpr_default_log
;
g
pr_atm_no_barrier_store
(
&
g_log_func
,
(
gpr_atm
)(
f
?
f
:
gpr_default_log
))
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment