1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/*
* $Id: fflush.c,v 1.1 2005/03/31 13:13:00 baud Exp $
*/
/*
* Copyright (C) 1990-1999 by CERN/IT/PDP/DM
* All rights reserved
*/
#ifndef lint
static char sccsid[] = "@(#)$RCSfile: fflush.c,v $ $Revision: 1.1 $ $Date: 2005/03/31 13:13:00 $ CERN/IT/PDP/DM Antoine Trannoy";
#endif /* not lint */
/* fflush.c Remote File I/O - flush a binary file */
/*
* System remote file I/O definitions
*/
#define RFIO_KERNEL 1
#include "rfio.h"
#include "rfio_rfilefdt.h"
/*
* Remote file flush
* If the file is remote, this is a dummy operation.
*/
int DLL_DECL rfio_fflush(fp)
RFILE *fp;
{
int status;
INIT_TRACE("RFIO_TRACE");
TRACE(1, "rfio", "rfio_fflush(%x)", fp);
if ( fp == NULL ) {
errno = EBADF;
END_TRACE();
return -1 ;
}
if (rfio_rfilefdt_findptr(fp,FINDRFILE_WITH_SCAN) == -1 ) {
status= fflush((FILE *)fp) ;
END_TRACE() ;
rfio_errno = 0;
return status ;
}
/*
* Checking magic number
*/
if ( fp->magic != RFIO_MAGIC) {
int fps = fp->s;
serrno = SEBADVERSION ;
free((char *)fp);
(void) close(fps) ;
END_TRACE() ;
return -1 ;
}
END_TRACE();
return 0 ;
}
|