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
sds
mona
Commits
f1869904
Commit
f1869904
authored
Nov 11, 2020
by
Matthieu Dorier
Browse files
corrected error code in mona_test
parent
55f4b58b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/mona.c
View file @
f1869904
...
...
@@ -401,7 +401,7 @@ na_return_t mona_wait(mona_request_t req)
int
mona_test
(
mona_request_t
req
,
int
*
flag
)
{
if
(
req
==
MONA_REQUEST_NULL
)
return
ABT_ERR_
INV_ARG
;
if
(
req
==
MONA_REQUEST_NULL
)
return
ABT_ERR_
OTHER
;
return
ABT_eventual_test
(
req
->
eventual
,
NULL
,
flag
);
}
...
...
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