mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 16:03:02 +01:00
Completed removal of obsolete "DELTA" port
This commit is contained in:
parent
ca8afe67d3
commit
829d6d32d5
@ -24,6 +24,8 @@
|
||||
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "DELTA" port
|
||||
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "IMP" port
|
||||
*
|
||||
* 2002.10.27 Sean Leyne - Completed removal of "DELTA" port
|
||||
*
|
||||
*/
|
||||
|
||||
#include "firebird.h"
|
||||
@ -657,7 +659,7 @@ int LLIO_sync(STATUS * status_vector, SLONG file_desc)
|
||||
*
|
||||
**************************************/
|
||||
|
||||
#if (defined DELTA || defined NETWARE_386)
|
||||
#if defined NETWARE_386
|
||||
return SUCCESS;
|
||||
#else
|
||||
return (fsync((int) file_desc) != -1) ? SUCCESS : FAILURE;
|
||||
|
@ -23,6 +23,8 @@
|
||||
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "EPSON" define
|
||||
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "IMP" port
|
||||
*
|
||||
* 2002.10.27 Sean Leyne - Completed removal of obsolete "DELTA" port
|
||||
*
|
||||
*/
|
||||
|
||||
#include "firebird.h"
|
||||
@ -90,7 +92,7 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if (defined DELTA || defined IMP)
|
||||
#ifdef IMP
|
||||
#include <fcntl.h>
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
@ -140,7 +142,7 @@
|
||||
#define MAXPATHLEN 256
|
||||
#endif
|
||||
|
||||
#if (defined DELTA || defined VMS || defined IMP )
|
||||
#if (defined VMS || defined IMP )
|
||||
#define waitpid(x,y,z) wait (y)
|
||||
#endif
|
||||
|
||||
|
@ -22,6 +22,9 @@
|
||||
* 2001.07.06 Sean Leyne - Code Cleanup, removed "#ifdef READONLY_DATABASE"
|
||||
* conditionals, as the engine now fully supports
|
||||
* readonly databases.
|
||||
*
|
||||
* 2002.10.27 Sean Leyne - Completed removal of "DELTA" port
|
||||
*
|
||||
*/
|
||||
|
||||
#ifdef SHLIB_DEFS
|
||||
@ -386,7 +389,6 @@ void PIO_flush(FIL main_file)
|
||||
is a no-op. */
|
||||
|
||||
#ifndef SUPERSERVER_V2
|
||||
#if !(defined DELTA)
|
||||
for (file = main_file; file; file = file->fil_next) {
|
||||
if (file->fil_desc != -1) { /* This really should be an error */
|
||||
THD_MUTEX_LOCK(file->fil_mutex);
|
||||
@ -395,7 +397,6 @@ void PIO_flush(FIL main_file)
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
@ -22,9 +22,11 @@
|
||||
*
|
||||
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "IMP" port
|
||||
*
|
||||
* 2002.10.27 Sean Leyne - Completed removal of obsolete "DELTA" port
|
||||
*
|
||||
*/
|
||||
/*
|
||||
$Id: lock.cpp,v 1.16 2002-10-27 12:51:37 dimitr Exp $
|
||||
$Id: lock.cpp,v 1.17 2002-10-28 03:47:45 seanleyne Exp $
|
||||
*/
|
||||
|
||||
#include "firebird.h"
|
||||
@ -87,7 +89,7 @@ $Id: lock.cpp,v 1.16 2002-10-27 12:51:37 dimitr Exp $
|
||||
#include <vfork.h>
|
||||
#endif
|
||||
|
||||
#if ( defined DELTA || defined IMP )
|
||||
#ifdef IMP
|
||||
#define waitpid(x,y,z) wait (y)
|
||||
#endif
|
||||
|
||||
|
@ -19,6 +19,9 @@
|
||||
*
|
||||
* All Rights Reserved.
|
||||
* Contributor(s): ______________________________________.
|
||||
*
|
||||
* 2002.10.27 Sean Leyne - Completed removal of obsolete "DELTA" port
|
||||
*
|
||||
*/
|
||||
|
||||
#include "firebird.h"
|
||||
@ -46,7 +49,7 @@
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#if (defined DELTA || defined sgi || defined ultrix)
|
||||
#if (defined sgi || defined ultrix)
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
#include <sys/stat.h>
|
||||
|
@ -23,12 +23,13 @@
|
||||
*
|
||||
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "EPSON" define
|
||||
*
|
||||
*
|
||||
* 2002-02-23 Sean Leyne - Code Cleanup, removed old M88K and NCR3000 port
|
||||
*
|
||||
* 2002.10.27 Sean Leyne - Completed removal of obsolete "DELTA" port
|
||||
*
|
||||
*/
|
||||
|
||||
/* $Id: head.cpp,v 1.11 2002-09-11 11:30:45 eku Exp $ */
|
||||
/* $Id: head.cpp,v 1.12 2002-10-28 03:47:46 seanleyne Exp $ */
|
||||
|
||||
#include "firebird.h"
|
||||
#include "../jrd/ib_stdio.h"
|
||||
@ -73,7 +74,7 @@
|
||||
#include <fcntl.h>
|
||||
#endif
|
||||
|
||||
#if (defined DELTA || defined M88K || defined SCO_UNIX || defined SINIXZ)
|
||||
#if (defined SCO_UNIX || defined SINIXZ)
|
||||
#include <fcntl.h>
|
||||
#endif
|
||||
|
||||
|
@ -19,16 +19,18 @@
|
||||
*
|
||||
* All Rights Reserved.
|
||||
* Contributor(s): ______________________________________.
|
||||
*/
|
||||
/*
|
||||
$Id: drop.cpp,v 1.10 2002-10-24 09:01:32 eku Exp $
|
||||
*
|
||||
* $Id: drop.cpp,v 1.11 2002-10-28 03:47:46 seanleyne Exp $
|
||||
*
|
||||
* 2002.10.27 Sean Leyne - Completed removal of obsolete "DELTA" port
|
||||
*
|
||||
*/
|
||||
|
||||
#include "firebird.h"
|
||||
#include "../jrd/ib_stdio.h"
|
||||
#include <errno.h>
|
||||
#include <sys/param.h>
|
||||
#if ( defined DELTA || defined IMP)
|
||||
#if (defined IMP)
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
#include <sys/stat.h>
|
||||
|
@ -22,6 +22,8 @@
|
||||
*
|
||||
* 2002.02.15 Sean Leyne - Code Cleanup, removed obsolete "IMP" port
|
||||
*
|
||||
* 2002.10.27 Sean Leyne - Completed removal of obsolete "DELTA" port
|
||||
*
|
||||
*/
|
||||
|
||||
#include "firebird.h"
|
||||
@ -64,7 +66,7 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if (defined DELTA || defined VMS || defined IMP)
|
||||
#if (defined VMS || defined IMP)
|
||||
#define waitpid(x,y,z) wait (y)
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user