I am invoking a lnx function on the background from a msf function. I would like check the termination of the background job and perform some operation on the output of that lnx function inside the msf file. I used the fact that "who" command show the status of the lnx output variables as busy to detect the termination of lnx (see the code below).
--------------------------------
Function [result] = myfun(c,d)
[a,l] = (define sl2sb, { background})(m,d);
while(1)
[c] === who;
display c;
if (index(c,"a -- busy") == -1)
exit;
else
pause(2)
endif
endwhile
c= a+2;
d = l+1;
endFunction
----------------------------------
The msf function never terminates
(get caught in the while loop) since even after the background lnx is terminated the "who" command keep showing busy status for the lnx outputs.
Note that this does not happen if I invoke the background lnx from the xmath command line (and not from the msf function), as soon as the lnx terminates, "who" shows the return value not the busy status.
Any hint on what is done wrongly above?
Is there a better way to achieve the same result (detecting termination of a background lnx invoked from a msf function)?
Thanks,