Kaynağa Gözat

Removed __PHYSFS_platformTimeslice()...we don't actually use this anymore.

Ryan C. Gordon 19 yıl önce
ebeveyn
işleme
bb1d757244
6 değiştirilmiş dosya ile 0 ekleme ve 41 silme
  1. 0 7
      physfs_internal.h
  2. 0 7
      platform/beos.cpp
  3. 0 7
      platform/os2.c
  4. 0 6
      platform/pocketpc.c
  5. 0 7
      platform/unix.c
  6. 0 7
      platform/windows.c

+ 0 - 7
physfs_internal.h

@@ -1612,13 +1612,6 @@ char *__PHYSFS_platformCvtToDependent(const char *prepend,
                                       const char *append);
 
 
-/*
- * Make the current thread give up a timeslice. This is called in a loop
- *  while waiting for various external forces to get back to us.
- */
-void __PHYSFS_platformTimeslice(void);
-
-
 /*
  * Enumerate a directory of files. This follows the rules for the
  *  PHYSFS_Archiver->enumerateFiles() method (see above), except that the

+ 0 - 7
platform/beos.cpp

@@ -189,13 +189,6 @@ PHYSFS_uint64 __PHYSFS_platformGetThreadID(void)
 } /* __PHYSFS_platformGetThreadID */
 
 
-/* Much like my college days, try to sleep for 10 milliseconds at a time... */
-void __PHYSFS_platformTimeslice(void)
-{
-    snooze(10000);  /* put thread to sleep for 10 milliseconds. */
-} /* __PHYSFS_platformTimeslice */
-
-
 char *__PHYSFS_platformRealPath(const char *path)
 {
     BPath normalized(path, NULL, true);  /* force normalization of path. */

+ 0 - 7
platform/os2.c

@@ -649,13 +649,6 @@ PHYSFS_sint64 __PHYSFS_platformGetLastModTime(const char *fname)
 } /* __PHYSFS_platformGetLastModTime */
 
 
-/* Much like my college days, try to sleep for 10 milliseconds at a time... */
-void __PHYSFS_platformTimeslice(void)
-{
-    DosSleep(10);
-} /* __PHYSFS_platformTimeslice(void) */
-
-
 PHYSFS_uint64 __PHYSFS_platformGetThreadID(void)
 {
     PTIB ptib;

+ 0 - 6
platform/pocketpc.c

@@ -225,12 +225,6 @@ char *__PHYSFS_platformCvtToDependent(const char *prepend,
 } /* __PHYSFS_platformCvtToDependent */
 
 
-void __PHYSFS_platformTimeslice(void)
-{
-    Sleep(10);
-} /* __PHYSFS_platformTimeslice */
-
-
 static int doEnumCallback(const wchar_t *w_fname)
 {
     const PHYSFS_uint64 len = (PHYSFS_uint64) ((wcslen(w_fname) * 4) + 1);

+ 0 - 7
platform/unix.c

@@ -350,13 +350,6 @@ char *__PHYSFS_platformCalcBaseDir(const char *argv0)
 } /* __PHYSFS_platformCalcBaseDir */
 
 
-/* Much like my college days, try to sleep for 10 milliseconds at a time... */
-void __PHYSFS_platformTimeslice(void)
-{
-    usleep( 10 * 1000 );           /* don't care if it fails. */
-} /* __PHYSFS_platformTimeslice */
-
-
 #ifdef PHYSFS_PLATFORM_MACOSX
 /* 
  * This function is only for OSX. The problem is that Apple's applications

+ 0 - 7
platform/windows.c

@@ -378,13 +378,6 @@ char *__PHYSFS_platformCvtToDependent(const char *prepend,
 } /* __PHYSFS_platformCvtToDependent */
 
 
-/* Much like my college days, try to sleep for 10 milliseconds at a time... */
-void __PHYSFS_platformTimeslice(void)
-{
-    Sleep(10);
-} /* __PHYSFS_platformTimeslice */
-
-
 void __PHYSFS_platformEnumerateFiles(const char *dirname,
                                      int omitSymLinks,
                                      PHYSFS_EnumFilesCallback callback,