Hi,<br><br><div class="gmail_quote">On Sun, Apr 20, 2008 at 4:26 PM, db <<a href="mailto:masterofquestions@gmail.com">masterofquestions@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Can someone tell me why can't stop the gen_server?<br>
<br>start()-><br>
    gen_server:start_link({global, ?SERVER}, ?SERVER, [],[]).<br>
<br>
stop()-><br>
    gen_server:call(?SERVER, stop).<br>
<br>
</blockquote></div>Try<br><br>
stop()-><br>
    gen_server:call({global, ?SERVER}, stop).<br><br>best regards,<br>Vlad<br><br>