RTT创建线程问题.....

创建线程问题

char a[3] = {1, 2, 3};
int i =0;
rt_thread_t thread1[3];
char threadname[] = {'t', 'h', 'r', 'e', 'a',  'd' ,'1'};

void Fun()
{
xxxxxxxxxxxxxxx;
}
int main()
{
    for(i = 0; i<3; i++)
    {
        threadname[6] ='1' + i; 
        thread[i] = rt_thread_create(threadname, Fun, &a[i], 512 ,2 ,5)
    }
}

请问一下 这样创建线程,是创建3条以Fun为入口函数,不同参数的线程吗?

https://blog.csdn.net/internet_register/article/details/77880107