Skip to content
Snippets Groups Projects
Commit fef632aa authored by Peter Kietzmann's avatar Peter Kietzmann Committed by GitHub
Browse files

Merge pull request #5577 from PeterKietzmann/tests_thread_exti_doc

tests/thread_exti: add small README
parents 121028d3 a74bc86e
No related branches found
No related tags found
No related merge requests found
Expected result
===============
You should see the following sequence at the console
main: starting
main: exiting
2nd: starting
3rd: starting
3rd: exiting
2nd: exiting
4th: starting
4th: exiting
......@@ -69,7 +69,7 @@ void *second_thread(void *arg)
NULL,
"nr4")
) == -1) {
puts("2nd: Error creating 4rd thread.");
puts("2nd: Error creating 4th thread.");
}
puts("2nd: exiting");
......@@ -89,7 +89,7 @@ int main(void)
NULL,
"nr2")
) == -1) {
puts("main: Error creating 3rd thread.");
puts("main: Error creating 2nd thread.");
}
puts("main: exiting");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment