Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
chuck cranor
margo
Commits
4cc9cbcd
Commit
4cc9cbcd
authored
Jun 29, 2016
by
Philip Carns
Browse files
more selective about when to abt yield
parent
bbb250f7
Changes
1
Show whitespace changes
Inline
Side-by-side
src/margo.c
View file @
4cc9cbcd
...
@@ -326,8 +326,23 @@ static void hg_progress_fn(void* foo)
...
@@ -326,8 +326,23 @@ static void hg_progress_fn(void* foo)
* to make sure that this ULT is the lowest priority in that
* to make sure that this ULT is the lowest priority in that
* scenario.
* scenario.
*/
*/
ret
=
HG_Progress
(
mid
->
hg_context
,
0
);
if
(
ret
==
HG_SUCCESS
)
{
/* Mercury completed something; loop around to trigger
* callbacks
*/
ABT_thread_yield
();
ABT_thread_yield
();
HG_Progress
(
mid
->
hg_context
,
0
);
}
else
if
(
ret
==
HG_TIMEOUT
)
{
/* No completion; yield here to allow other ULTs to run */
}
else
{
/* TODO: error handling */
fprintf
(
stderr
,
"WARNING: unexpected return code (%d) from HG_Progress()
\n
"
,
ret
);
}
}
}
else
else
{
{
...
@@ -348,7 +363,12 @@ static void hg_progress_fn(void* foo)
...
@@ -348,7 +363,12 @@ static void hg_progress_fn(void* foo)
hg_progress_timeout
=
0
;
hg_progress_timeout
=
0
;
}
}
}
}
HG_Progress
(
mid
->
hg_context
,
hg_progress_timeout
);
ret
=
HG_Progress
(
mid
->
hg_context
,
hg_progress_timeout
);
if
(
ret
!=
HG_SUCCESS
&&
ret
!=
HG_TIMEOUT
)
{
/* TODO: error handling */
fprintf
(
stderr
,
"WARNING: unexpected return code (%d) from HG_Progress()
\n
"
,
ret
);
}
}
}
/* check for any expired timers */
/* check for any expired timers */
...
...
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