Make TODO note to replace use of non-threadsafe chdir for python.
authorceros7 <ceros7@svn>
Sat, 5 Dec 2009 17:53:21 +0000 (17:53 +0000)
committerceros7 <ceros7@svn>
Sat, 5 Dec 2009 17:53:21 +0000 (17:53 +0000)
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@25322 568bbfeb-2a22-0410-94d2-cc84cf5bfa90

xbmc/cores/DllLoader/exports/exports_python_linux.cpp

index fb5fc0e..3b37f0b 100644 (file)
@@ -140,7 +140,9 @@ int xbp_chdir(const char *dirname)
   strcpy(xbp_cw_dir, dirname);
 
 #if (defined USE_EXTERNAL_PYTHON)
-  // The real chdir() has to be used if using external python
+  /* TODO: Need to figure out how to make system level Python make call to
+   * XBMC's chdir instead of non-threadsafe system chdir
+   */
   CStdString strName = _P(dirname);
   return chdir(strName.c_str());
 #else