<div dir="ltr">Hi,<div>  </div><div>    I would like to monitor a process and suspend the execution of certain functions to perform some other computation before. For instance consider a process A which executing the following simple function.</div>
<div><br></div><div>test() -></div><div>    x(),</div><div>    y(),</div><div>    z().</div><div><br></div><div>I would like to initiate a process, B, that monitors the execution of A. </div><div>I want B to:</div><div>
  1) stop A before function y is executed</div><div>  2) execute some logic</div><div>  3) resumes the execution of A (by executing Y and Z)</div><div><br></div><div>So far, I have been following <a href="http://erlang.org/pipermail/erlang-questions/2003-January/006679.html">this post</a> and managed to determine when the y() function call was being done, but cannot suspend its execution. Any ideas how I can achieve this? </div>
<div><br></div><div>Thanks</div><div>Tyron<br></div></div>