In addition for improving the performance of the system much more, one lockless queue memory management mechanism is applied into the system.
另外,为了进

提高系统的性能,本
又引入了无互斥的

队列内存管
机制。
声明:以上例句、词性分类均由互联网资源自动生成,部分未经过人工审核,其表达内容亦不代表本软件的观点;若发现问题,欢迎向我们指正。
教 Catholicism Said of software that can be executed multiple times simultaneously. A reentrant function can be safely called recursively or from multiple tasks. The key to making code reentrant is to ensure mutual exclusion whenever accessing global variables or shared registers.
可同时多次运行
程序
说法。可再入
函数可以被安全地递归调用或由多任务多次调用。使代码可再入
关键在于确保在访问全局变量或共享寄存器时互
现象发生。
A guarantee of exclusive access to a shared resource. In embedded systems, the shared resource is typically a block of memory, a global variable, or a set of registers. Mutual exclusion can be achieved with the use of a semaphore or mutex.
唯一访问共享资源
保证。在嵌入式系统中,共享
资源典型
有内存块或寄存器组。互
现象能由使用信号灯或互
完成。