| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /*
- * Copyright (c) 2006-2018, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2018-08-24 yangjie the first version
- * 2020-10-17 Meco Man translate to English comment
- */
- /*
- * Demo: thread(s)
- *
- * This demo creates two threads:
- * 1) create thread #1 dynamically, and delete automatically when the thread #1 finished;
- * 2) create thread #2 statically, and print counting numbers continuously.
- *
- * read more:
- * https://www.rt-thread.io/document/site/thread/thread/
- */
-
- #include <rtthread.h>
- #define THREAD_PRIORITY 25
- #define THREAD_STACK_SIZE 512
- #define THREAD_TIMESLICE 5
- /* thread handler */
- static rt_thread_t tid1 = RT_NULL;
- /* thread #1 entry function */
- static void thread1_entry(void *parameter)
- {
- rt_uint32_t count = 0;
- while (1)
- {
- /* thread #1 occupies low priority and prints counting numbers continuously */
- rt_kprintf("thread1 count: %d\n", count ++);
- rt_thread_mdelay(500);
- }
- }
- ALIGN(RT_ALIGN_SIZE)
- static char thread2_stack[1024];
- static struct rt_thread thread2;
- /* thread #2 entry function */
- static void thread2_entry(void *param)
- {
- rt_uint32_t count = 0;
- /* thread #2 occupies higher priority than that of thread #1 */
- for (count = 0; count < 10 ; count++)
- {
- /* thread #2 prints counting numbers */
- rt_kprintf("thread2 count: %d\n", count);
- }
- rt_kprintf("thread2 exit\n");
- /* RT-Thread allows thread entry function to return directly */
- /* thread #2 will be deleted automatically by idle thread once it finishes */
- }
- int thread_sample(void)
- {
- /* create thread #1 dynamically */
- tid1 = rt_thread_create("thread1",
- thread1_entry, RT_NULL,
- THREAD_STACK_SIZE,
- THREAD_PRIORITY, THREAD_TIMESLICE);
- /* start thread #1 */
- if (tid1 != RT_NULL)
- rt_thread_startup(tid1);
- /* create thread #2 statically */
- rt_thread_init(&thread2,
- "thread2",
- thread2_entry,
- RT_NULL,
- &thread2_stack[0],
- sizeof(thread2_stack),
- THREAD_PRIORITY - 1, THREAD_TIMESLICE);
- rt_thread_startup(&thread2); /* start thread #2 */
- return 0;
- }
- /* export the msh command */
- MSH_CMD_EXPORT(thread_sample, thread sample);
|