2001-10-04 17:10 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2001-10-04 21:18:47 +00:00
parent 369b3680cb
commit ef8e02991c
4 changed files with 12 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
2001-10-04 17:10 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* doc/gmake.txt
* source/rtl/filesys.c
* source/rtl/idle.c
! Cygwin fixes.
2001-10-03 17:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* source/rtl/isprint.c

View File

@@ -143,6 +143,8 @@ For gcc on Win95/WinNT with the Cygwin library:
HB_COMPILER gcc
HB_GT_LIB gtwin
CYGWIN noglob
C_USR -mwin32
L_USR -mwin32
For gcc on Win95/WinNT with the Mingw32 library:
HB_ARCHITECTURE w32

View File

@@ -690,7 +690,8 @@ ULONG hb_fsReadLarge( FHANDLE hFileHandle, BYTE * pBuff, ULONG ulCount )
errno = 0;
#if defined(X__WIN32__){
#if defined(X__WIN32__)
{
BOOL bError;
bError=ReadFile( ( HANDLE ) hFileHandle, pBuff, ulCount, &ulRead, NULL );
if (!bError)

View File

@@ -98,7 +98,7 @@ static void hb_releaseCPU( void )
/* TODO: Add code to release time slices on all platforms */
#if defined(HB_OS_WIN_32)
#if defined(HB_OS_WIN_32) || defined(__CYGWIN__)
/* Forfeit the remainder of the current time slice. */
Sleep( 20 );