swe-hob - 2024-06-03

Hi,

Let's assume following:

PRG_1
fb_1 : fbExample1;

fb_1.method_1
do something...
PRG_2
fb_2 : fbExample2;

fb_2.method_2
if xTest then
    PRG_1.fb_1.method_1();
end_if;

Is there a reason why runtime hangs when I call the method_1 in PRG_1 from a method in PRG_2?
Both programs run in the same task. No chance that any other program calls the method.
What I practically do there is that in the program PRG_2 I add a structed object into a buffer.
In PRG_1 I just process the items in the buffer.