mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 13:03:31 +08:00
fixed the coding style in thread.c
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2506 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
6bb7cc6015
commit
6346ab09d8
@ -283,10 +283,11 @@ RTM_EXPORT(rt_thread_detach);
|
|||||||
* @return the created thread object
|
* @return the created thread object
|
||||||
*/
|
*/
|
||||||
rt_thread_t rt_thread_create(const char *name,
|
rt_thread_t rt_thread_create(const char *name,
|
||||||
void (*entry)(void *parameter), void *parameter,
|
void (*entry)(void *parameter),
|
||||||
rt_uint32_t stack_size,
|
void *parameter,
|
||||||
rt_uint8_t priority,
|
rt_uint32_t stack_size,
|
||||||
rt_uint32_t tick)
|
rt_uint8_t priority,
|
||||||
|
rt_uint32_t tick)
|
||||||
{
|
{
|
||||||
struct rt_thread *thread;
|
struct rt_thread *thread;
|
||||||
void *stack_start;
|
void *stack_start;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user