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
Linux-Kernel
libevl
Commits
57b78404
Commit
57b78404
authored
Nov 10, 2020
by
Philippe Gerum
Browse files
tests: thread-mode-bits: fix regression (lingering debug code)
Signed-off-by:
Philippe Gerum
<
rpm@xenomai.org
>
parent
4cfd6a0a
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/thread-mode-bits.c
View file @
57b78404
...
...
@@ -23,7 +23,7 @@ int main(int argc, char *argv[])
__Tcall_assert
(
tfd
,
evl_attach_self
(
"thread-mode-bits:%d"
,
getpid
()));
/* Starts with no mode bit set. */
__Tcall_assert
(
ret
,
evl_set_thread_mode
(
tfd
,
/*
T_WOSS|
*/
T_WOLI
|
T_WOSX
,
&
oldmask
));
__Tcall_assert
(
ret
,
evl_set_thread_mode
(
tfd
,
T_WOSS
|
T_WOLI
|
T_WOSX
,
&
oldmask
));
/* T_WOLI may be preset if CONFIG_EVL_DEBUG_WOLI is set. */
__Texpr_assert
((
oldmask
&
~
T_WOLI
)
==
0
);
__Tcall_assert
(
ret
,
evl_set_thread_mode
(
tfd
,
0
,
&
oldmask
));
...
...
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