-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnullLOG.f
27 lines (27 loc) · 902 Bytes
/
nullLOG.f
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
c-----------------------------------------------------------------------
c Null library for a few miscellaneous routines from MacMPI
c update: april 9, 2003
c-----------------------------------------------------------------------
subroutine LOGNAME(name)
c this subroutine records and displays user-defined label
c name = label to display
implicit none
character*(*) name
return
end
c-----------------------------------------------------------------------
subroutine SET_MON(monval)
c this subroutine sets new monitor value and corresponding window
c monval = new monitor value
implicit none
integer monval
return
end
c-----------------------------------------------------------------------
function GET_MON()
c this function gets current monitor value
implicit none
integer GET_MON
GET_MON = 0
return
end