Skip to content

Commit

Permalink
Removed __PHYSFS_platformTimeslice()...we don't actually use this any…
Browse files Browse the repository at this point in the history
…more.
  • Loading branch information
icculus committed Mar 20, 2007
1 parent 7703202 commit bb1d757
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 41 deletions.
7 changes: 0 additions & 7 deletions physfs_internal.h
Expand Up @@ -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
Expand Down
7 changes: 0 additions & 7 deletions platform/beos.cpp
Expand Up @@ -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. */
Expand Down
7 changes: 0 additions & 7 deletions platform/os2.c
Expand Up @@ -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;
Expand Down
6 changes: 0 additions & 6 deletions platform/pocketpc.c
Expand Up @@ -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);
Expand Down
7 changes: 0 additions & 7 deletions platform/unix.c
Expand Up @@ -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
Expand Down
7 changes: 0 additions & 7 deletions platform/windows.c
Expand Up @@ -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,
Expand Down

0 comments on commit bb1d757

Please sign in to comment.