TencentOS-tiny/kernel/core
daishengdong 96cf620708 a bugfix for mail queue and printf clipping switch
1. add TOS_CFG_LIBC_PRINTF_EN
1: enable printf to implement tos_kprintf
when you call tos_kprintf(actually currently it's a MACRO rather than a function) , the libc will be invloved into the image, most of the time it means a larger image size.

0: disable printf, means tos_kprintf is defined as an empty MACRO
most of the time, means you will not get a log output from the uart(currently we donnot have a console yet) but a smaller image size.

2. fix a bug of tos_mail_q and tos_priority_mail_q
if we are post-ing a mail and there is[are] task[s] just pend-ing for the mail queue, the mail delivered to the pend-er will be a pointer, and probably it's a pointer to the local variable on the stack. Actually we should do a memcpy rather than a pointer assignment. for more details, see the patch.
2019-11-25 21:04:37 +08:00
..
include a bugfix for mail queue and printf clipping switch 2019-11-25 21:04:37 +08:00
tos_binary_heap.c add more nimble example 2019-11-12 19:56:52 +08:00
tos_char_fifo.c add a set of dyn(create / destroy) interface 2019-10-29 16:57:43 +08:00
tos_completion.c add a set of dyn(create / destroy) interface 2019-10-29 16:57:43 +08:00
tos_countdownlatch.c add a set of dyn(create / destroy) interface 2019-10-29 16:57:43 +08:00
tos_event.c add a set of dyn(create / destroy) interface 2019-10-29 16:57:43 +08:00
tos_global.c add ring queue/message queue/mail queue, binary heap/priority queue/priority message queue/priority mail queue 2019-10-28 15:50:46 +08:00
tos_mail_queue.c a bugfix for mail queue and printf clipping switch 2019-11-25 21:04:37 +08:00
tos_message_queue.c a bugfix for mail queue and printf clipping switch 2019-11-25 21:04:37 +08:00
tos_mmblk.c add a set of dyn(create / destroy) interface 2019-10-29 16:57:43 +08:00
tos_mmheap.c add tos_mmheap_check & tos_mmheap_pool_check API and TOS_CFG_MMHEAP_DEFAULT_POOL_EN switch 2019-10-14 22:09:57 +08:00
tos_mutex.c a bugfix for mail queue and printf clipping switch 2019-11-25 21:04:37 +08:00
tos_pend.c add a set of dyn(create / destroy) interface 2019-10-29 16:57:43 +08:00
tos_priority_mail_queue.c a bugfix for mail queue and printf clipping switch 2019-11-25 21:04:37 +08:00
tos_priority_message_queue.c a bugfix for mail queue and printf clipping switch 2019-11-25 21:04:37 +08:00
tos_priority_queue.c fix compile warning 2019-10-31 15:08:13 +08:00
tos_ring_queue.c add more nimble example 2019-11-12 19:56:52 +08:00
tos_robin.c add license for kernel 2019-10-09 13:15:53 +08:00
tos_sched.c add API (tos_task_create_dyn & tos_task_walkthru & tos_task_curr_task_get) 2019-10-23 21:22:13 +08:00
tos_sem.c add a set of dyn(create / destroy) interface 2019-10-29 16:57:43 +08:00
tos_sys.c a bugfix for mail queue and printf clipping switch 2019-11-25 21:04:37 +08:00
tos_task.c a bugfix for mail queue and printf clipping switch 2019-11-25 21:04:37 +08:00
tos_tick.c a bugfix for mail queue and printf clipping switch 2019-11-25 21:04:37 +08:00
tos_time.c add license for kernel 2019-10-09 13:15:53 +08:00
tos_timer.c add a set of dyn(create / destroy) interface 2019-10-29 16:57:43 +08:00