]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-6061 --resolve
authorAnthony Minessale <anthm@freeswitch.org>
Mon, 23 Dec 2013 17:43:06 +0000 (22:43 +0500)
committerAnthony Minessale <anthm@freeswitch.org>
Mon, 23 Dec 2013 17:43:06 +0000 (22:43 +0500)
src/switch_cpp.cpp
swig_common.i

index 27d6dc68b6219b2f4d169be69922c82ffb7122fa..85fc978a6f737574b072357a20680404bc3637ee 100644 (file)
@@ -1306,7 +1306,7 @@ SWITCH_DECLARE(bool) email(char *to, char *from, char *headers, char *body, char
     return false;
 }
 
-SWITCH_DECLARE(void) msleep(unsigned ms)
+SWITCH_DECLARE(void) switch_msleep(unsigned ms)
 {
        switch_sleep(ms * 1000);
        return;
index 617b97551a6997018539842bd58b94fa6f61f071..d64642027a604dcc62e564a487cebec9ecf6cf10 100644 (file)
@@ -1,2 +1,7 @@
 %typemap(newfree) char * "free($1);";
 %newobject getGlobalVariable;
+%rename(msleep) switch_msleep;
+
+
+
+