[vlc-devel] [PATCH 2/5] vlccore: declare super_mutex and super_variable as static variable on OS/2
KO Myung-Hun
komh78 at gmail.com
Sat Mar 2 16:11:07 CET 2013
---
src/os2/thread.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/os2/thread.c b/src/os2/thread.c
index ea7c676..a6941b9 100644
--- a/src/os2/thread.c
+++ b/src/os2/thread.c
@@ -119,8 +119,8 @@ static ULONG vlc_Sleep (ULONG ulTimeout)
return ( rc != ERROR_TIMEOUT ) ? rc : 0;
}
-vlc_mutex_t super_mutex;
-vlc_cond_t super_variable;
+static vlc_mutex_t super_mutex;
+static vlc_cond_t super_variable;
extern vlc_rwlock_t config_lock, msg_lock;
int _CRT_init(void);
--
1.7.3.2
More information about the vlc-devel
mailing list