⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻
字号:
----  $Id: README,v 1.3 1995/12/19 20:12:30 joel Exp $--Overview of newlib support (newlib is from CYGNUS)    Each task can have its own libc state including:        open stdio files        strtok        multi precision arithmetic state        etc.    This is implemented by a reentrancy data structure for each task.    When a task is "started" (in RTEMS sense) the reentrancy structure    is allocated.  Its address is stored in notepad[NOTEPAD_LAST].    When task is switched to, the value of global variable _impure_ptr    is changed to the value of the new tasks reentrancy structure.    When a task is deleted        atexit() processing (for that task) happens        task's stdio buffers are flushed    When exit(3) is called        calling task's atexit processing done        global libc state atexit processing done            (this will include any atexit routines installed by drivers)        executive is shutdown            causes a context switch back to bsp landNOTE:    libc extension are installed by bsp_libc_init()        iff we are using clock interrupts.        This hack is necessary to allow the tmtests to avoid        timing the extensions.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -