2013-05-16 22:34 UTC+0200 Tamas TEVESZ (ice extreme.hu)

* contrib/3rd/sqlite3/sqlite3.hbp
    * Disable on Minix (no MAP_SHARED which is needed by SQLite WAL);
      (Hopefully a temporary measure.)
  * src/rtl/filesys.c
    ! Disable hb_fsPipeUnblock() on Minix;
      makes hb_processRun() work. Thanks to Przemek for the idea.
This commit is contained in:
Tamas TEVESZ
2013-05-16 22:39:24 +02:00
parent 6d3f954534
commit 4469d28b70
3 changed files with 14 additions and 2 deletions

View File

@@ -857,7 +857,7 @@ HB_BOOL hb_fsPipeUnblock( HB_FHANDLE hPipeHandle )
{
HB_TRACE( HB_TR_DEBUG, ( "hb_fsPipeUnblock(%p)", ( void * ) ( HB_PTRDIFF ) hPipeHandle ) );
#if defined( HB_OS_UNIX )
#if defined( HB_OS_UNIX ) && ! defined( HB_OS_MINIX )
{
int ret = fcntl( hPipeHandle, F_GETFL, 0 );