imple program and load into RTEMS with dlopen
On 18/09/2018 01:29, boldizsar.palo...@esa.int wrote:
> Hi,
Hi, and welcome.
> I'm using RTEMS 4.11 and the builtin POSIX API functions to dynamically
load a
> program image into memory. The program image is loaded in RTEMS using
t
On 18/09/2018 01:29, boldizsar.palo...@esa.int wrote:
> Hi,
Hi, and welcome.
> I'm using RTEMS 4.11 and the builtin POSIX API functions to dynamically load a
> program image into memory. The program image is loaded in RTEMS using the
> following code:
> void* handle = dlopen(prog_name, RTLD_NOW |
Hi,
I'm using RTEMS 4.11 and the builtin POSIX API functions to dynamically
load a program image into memory. The program image is loaded in RTEMS
using the following code:
void* handle = dlopen(prog_name, RTLD_NOW | RTLD_GLOBAL);
if (!handle)
printf("dlopen: %s\n", dlerror());
I'm using the