-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpflush.f90
72 lines (69 loc) · 2.81 KB
/
pflush.f90
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
62
63
64
65
66
67
68
69
70
71
72
!-------------------------------------------------------------------------------------
! portable flush()
!
! a working flush() is critical when using UNIX pipes to communicate between programs
!
! by default, ouput to files/pipes is buffered (often in chunks of 8192 bytes)
! flush() forces the i/o buffer to be written to disk
!
! the most common Fortran compiles (gfotran, ifort) have a working flush via "call flush()"
! in Fortran 2003, the intrinsic flush() is recommended
!
! We also try to use the POSIX fsync function
! if this causes an error, simply comment out the call to fsync at the bottom of the subroutine.
!
! NAG (Numerical Algorithms Group) requires a special module to be called
!
!-------------------------------------------------------------------------------------
! Copyright (c) 2016 Daniel C. Elton
!
! This software is licensed under The MIT License (MIT)
! Permission is hereby granted, free of charge, to any person obtaining a copy of this
! software and associated documentation files (the "Software"), to deal in the Software
! without restriction, including without limitation the rights to use, copy, modify, merge,
! publish, distribute, sublicense, and/or sell copies of the Software, and to permit
! persons to whom the Software is furnished to do so, subject to the following conditions:
!
! The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
!
! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
! BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
! NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
! DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
! OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
!-------------------------------------------------------------------------------------
subroutine pflush(unit)
#ifdef __NAG__
use f90_unix_io, only : flush
#endif
implicit none
!interface for POSIX fsync function
interface
function fsync (fd) bind(c,name="fsync")
use iso_c_binding, only: c_int
integer(c_int), value :: fd
integer(c_int) :: fsync
end function fsync
end interface
integer, intent(in) :: unit
integer :: ret
#if defined(F2003) || defined(__F2003__)
flush(unit)
#elif defined(GFORTRAN) || defined(__GFORTRAN__)
call flush(unit)
#elif defined(XLF)
if (unit.eq.6 .or. unit.eq.0) then
call flush_(unit)
else
flush(unit)
endif
#elif defined (FC_HAVE_FLUSH)
call flush(unit)
#else
!try anyway
flush(unit)
call flush(unit)
#endif
!ret = fsync(fnum(unit))
!if (ret /= 0) stop "see pflush.f90: Error calling POSIX FSYNC"
end subroutine pflush