48bd0e49f2
* [ipc] lockless rt_completion implementation The new rt_completion implemented by lockless algorithm can improve timer resolution for up to ~12%, compare to sem IPC. Signed-off-by: Shell <smokewood@qq.com> * fixup: error * remove useless changes --------- Signed-off-by: Shell <smokewood@qq.com>
14 lines
306 B
Python
14 lines
306 B
Python
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
CPPPATH = [cwd]
|
|
|
|
if GetDepend(['UTEST_COMPLETION_TC']):
|
|
src += ['completion_tc.c', 'completion_timeout_tc.c']
|
|
|
|
group = DefineGroup('utestcases', src, depend = ['RT_USING_UTESTCASES'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|