FS-6061 --resolve
This commit is contained in:
parent
8f73c4ef44
commit
1af72288d1
|
@ -1306,7 +1306,7 @@ SWITCH_DECLARE(bool) email(char *to, char *from, char *headers, char *body, char
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
SWITCH_DECLARE(void) msleep(unsigned ms)
|
SWITCH_DECLARE(void) switch_msleep(unsigned ms)
|
||||||
{
|
{
|
||||||
switch_sleep(ms * 1000);
|
switch_sleep(ms * 1000);
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -1,2 +1,7 @@
|
||||||
%typemap(newfree) char * "free($1);";
|
%typemap(newfree) char * "free($1);";
|
||||||
%newobject getGlobalVariable;
|
%newobject getGlobalVariable;
|
||||||
|
%rename(msleep) switch_msleep;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue