Move pthread join and key creation data into the task group
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5602 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
a9f6de3d3b
commit
1529b30bd1
@ -503,7 +503,7 @@ static void stdio_test(void)
|
|||||||
* ostest_main
|
* ostest_main
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
int ostest_main(int argc, char *argv[])
|
int ostest_main(int argc, FAR char *argv[])
|
||||||
{
|
{
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
@ -546,9 +546,11 @@ int ostest_main(int argc, char *argv[])
|
|||||||
/* Verify that we can spawn a new task */
|
/* Verify that we can spawn a new task */
|
||||||
|
|
||||||
#ifndef CONFIG_CUSTOM_STACK
|
#ifndef CONFIG_CUSTOM_STACK
|
||||||
result = task_create("ostest", PRIORITY, STACKSIZE, user_main, g_argv);
|
result = task_create("ostest", PRIORITY, STACKSIZE, user_main,
|
||||||
|
(FAR char * const *)g_argv);
|
||||||
#else
|
#else
|
||||||
result = task_create("ostest", PRIORITY, user_main, g_argv);
|
result = task_create("ostest", PRIORITY, user_main,
|
||||||
|
(FAR char * const *)g_argv);
|
||||||
#endif
|
#endif
|
||||||
if (result == ERROR)
|
if (result == ERROR)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user