Lines Matching refs:a
3 …cally loaded and deleted to extend the kernel functionality. `dlmodule` is a software component o…
5 `dlmodule` is more of an ELF format loader. The code segment and data segment of a separately compi…
9 …a mechanism for dynamically loading program modules for RT-Thread. Because it is also compiled ind…
13 …mic module that is suffixed with `.mo` when compiled; it can be loaded, and a main thread is autom…
14 * `.so` is a dynamic library compiled with `.so` as a suffix; it can be loaded and resided in memor…
16 …V architecture in the future. The RT-Thread kernel firmware section can use a variety of compiler …
20 When you want to use the dynamic modules in your system, you need to compile a firmware that suppor…
55 … the dynamic module is linked. The same is the PIC method, and is linked in a shared library (part…
57 …ully compiled, whether the corresponding dynamic module file needs to be copied to a unified place;
69 This symbol table will be placed in a special section named `RTMSymTab`, so the corresponding firmw…
87 There is a separate repository on github: [rtthread-apps](https://github.com/RT-Thread/rtthread-app…
96 | md5 | Generate md5 code for a file |
98 | ymodem | Download a file to the file system through the serial port using the YModem protocol |
120 After compiling successfully, it will generate a `hello.mo` file in the `rtthread-apps/hello` direc…
130 …ile system. Under msh, you can simply execute the `hello.mo` dynamic module as a `hello` command:
171 … memory, and if it is loaded correctly, returns a pointer to the module. This function does not cr…
188 This function loads the dynamic module according to the `pgname` path and starts a thread to execu…
215 This function uses `name` to find out if there is already a dynamic module loaded in the system.
228 This function returns a pointer of the dynamic module in the calling context.
247 The POSIX standard libdl API is also supported in RT-Thread dlmodule. It is similar to loading a dy…
258 | mode | The mode when opening a dynamic library, not used in RT-Thread |
294 …by `dlsym` will no longer be available. If you still try to access it, it may cause a fault error.