Re: [fpc-pascal] BlockWrite() version 2.6.4

2017-08-05 Thread Karoly Balogh (Charlie/SGR)
Hi, On Sat, 5 Aug 2017, Michael Van Canneyt wrote: > > In which file can the source code specific to BlockWrite() version 2.6.4 be > > found ? > > Headers are in rtl/inc/systemh.inc > actual routines are in rtl/inc/file.inc Just an addition, BlockWrite() actually calls the internal RTL function

Re: [fpc-pascal] BlockWrite() version 2.6.4

2017-08-05 Thread Michael Van Canneyt
On Sat, 5 Aug 2017, Brian wrote: Can anyone familiar with FPC 2.6.4 comment on the specifics of how BlockWrite() functions under Linux. Specifically does BlockWrite() call the Linux kernel or call fWrite()? Normally, it calls the linux kernel. Does BlockWrite() call fFlush or does it rely

[fpc-pascal] BlockWrite() version 2.6.4

2017-08-05 Thread Brian
Can anyone familiar with FPC 2.6.4 comment on the specifics of how BlockWrite() functions under Linux. Specifically does BlockWrite() call the Linux kernel or call fWrite()? Does BlockWrite() call fFlush or does it rely on the kernel when to flush and actually write to the disk? In which file can