Skip to content
Snippets Groups Projects
Commit d0a13383 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Align interface of fwPOSIXFPGUARDSENDRECV with that of cdiPioFileWrite.

parent e91bbdf3
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ cdiPioFileWrite(int fileID, const void *restrict buffer, size_t len, int tsID)
iret = pioSendWrite(fileID, buffer, len, tsID);
break;
case PIO_FPGUARD:
iret = fwPOSIXFPGUARDSENDRECV ( fileID, tsID, buffer, len );
iret = fwPOSIXFPGUARDSENDRECV(fileID, buffer, len, tsID);
break;
}
......
......@@ -108,7 +108,7 @@ void pioWriterAIO(void);
#endif
/* pio_posixfpguardsendrecv.c */
size_t fwPOSIXFPGUARDSENDRECV ( int, int, const void *, size_t );
size_t fwPOSIXFPGUARDSENDRECV(int, const void *, size_t, int);
void initPOSIXFPGUARDSENDRECV(void);
void finalizePOSIXFPGUARDSENDRECV ( void );
......
......@@ -381,7 +381,8 @@ flushOp(aFiledataPF *a, int tsID)
}
size_t fwPOSIXFPGUARDSENDRECV( int fileID, int tsID, const void *buffer, size_t len )
size_t
fwPOSIXFPGUARDSENDRECV(int fileID, const void *buffer, size_t len, int tsID)
{
int error = 0;
int filled = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment