Date: 01/15/01
- Next message: Zak Greant: "Re: [PHP-DEV] Scope of set_time_limit"
- Previous message: Zeev Suraski: "RE: [PHP-DEV] Legal solution: RE: [PHP-DEV] Non-GPL readline"
- Next in thread: Sean R. Bright: "RE: [PHP-DEV] PHP 4.0 Bug #8728 Updated: Patch: usleep() working on win32 platforms"
- Reply: Sean R. Bright: "RE: [PHP-DEV] PHP 4.0 Bug #8728 Updated: Patch: usleep() working on win32 platforms"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
ID: 8728
User Update by: christophe <email protected>
Status: Open
Bug Type: Feature/Change Request
Description: Patch: usleep() working on win32 platforms
oops... my previous patch was incorrect, let me start over:
in main/config.w32.h, line 93:
/* Define if you have the usleep function. */
#undef HAVE_USLEEP
change it to:
/* Define if you have the usleep function. */
#define HAVE_USLEEP 1
in win32/time.c, line 53:
void usleep(unsigned int useconds)
{
__int64 mstimer, freq;
long now, then;
if (QueryPerformanceFrequency((LARGE_INTEGER *) & freq)) {
QueryPerformanceCounter((LARGE_INTEGER *) & mstimer);
now = (long) (((__int64) (mstimer * .8)) % 0x0FFFFFFF);
then = now + useconds;
while (now < then) {
QueryPerformanceCounter((LARGE_INTEGER *) & mstimer);
now = (long) (((__int64) (mstimer * .8)) % 0x0FFFFFFF);
}
} else {
/*workaround for systems without performance counter
this is actualy a millisecond sleep */
Sleep((int) (useconds / 1000));
}
}
change it to:
void usleep(unsigned int useconds)
{
#if 0
__int64 mstimer, freq;
long now, then;
if (QueryPerformanceFrequency((LARGE_INTEGER *) & freq)) {
QueryPerformanceCounter((LARGE_INTEGER *) & mstimer);
now = (long) (((__int64) (mstimer * .8)) % 0x0FFFFFFF);
then = now + useconds;
while (now < then) {
QueryPerformanceCounter((LARGE_INTEGER *) & mstimer);
now = (long) (((__int64) (mstimer * .8)) % 0x0FFFFFFF);
}
} else {
/*workaround for systems without performance counter
this is actualy a millisecond sleep */
Sleep((int) (useconds / 1000));
}
#else
Sleep((DWORD) useconds);
#endif
}
and now it works great :)
can someone reflect this patch in the cvs tree?
-Christophe Thibault
Nullsoft (www.nullsoft.com/www.winamp.com)
Previous Comments:
---------------------------------------------------------------------------
[2001-01-15 18:22:56] christophe <email protected>
usleep exists on Win32 as the Sleep command (it takes a millisecond value as parameter) so here is the patch for making the usleep() php function to work on win32 platforms:
in main/win95nt.h, line 27:
#define php_sleep(t) Sleep(t*1000)
add the following line so it looks like:
#define php_sleep(t) Sleep(t*1000)
#define usleep(t) Sleep(t)
and in config.w32.h, line 93:
/* Define if you have the usleep function. */
#undef HAVE_USLEEP
change it to:
/* Define if you have the usleep function. */
#define HAVE_USLEEP 1
-Christophe Thibault
Nullsoft (www.nullsoft.com/www.winamp.com)
---------------------------------------------------------------------------
Full Bug description available at: http://bugs.php.net/?id=8728
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Zak Greant: "Re: [PHP-DEV] Scope of set_time_limit"
- Previous message: Zeev Suraski: "RE: [PHP-DEV] Legal solution: RE: [PHP-DEV] Non-GPL readline"
- Next in thread: Sean R. Bright: "RE: [PHP-DEV] PHP 4.0 Bug #8728 Updated: Patch: usleep() working on win32 platforms"
- Reply: Sean R. Bright: "RE: [PHP-DEV] PHP 4.0 Bug #8728 Updated: Patch: usleep() working on win32 platforms"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

