sc_reset_global in control application cause that can not compile

I’m using sc_reset_global macro in control application, but when I try to generate source code, the process no ends, is necessary restart server in order to recover again.

My environment is CentOS7, the process that keep working is php-cgi.

regards,

AYMG

In which event are you using the macro? YOu can also reset by [myvar]=’’;

Hi Albert,

I’m ussing on onApplicationInit, like documentation show.

To solve my problem, I used:
[var_dat_usu] = array(
‘cod_usu’ => ‘’,
‘id_usu’ => ‘’,
‘nom_ape_usu’ => ‘’
);

And set in in global variable like session.

Thanks for your comments Albert.