-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update
prif_caffeinate
to prif_init
and remove prif_decaffeinate
- Loading branch information
Showing
9 changed files
with
20 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 4 additions & 9 deletions
13
src/caffeine/caffeinate_decaffeinate_m.f90 → src/caffeine/program_startup_m.f90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,21 @@ | ||
! Copyright (c), The Regents of the University of California | ||
! Terms of use are as specified in LICENSE.txt | ||
module caffeinate_decaffeinate_m | ||
module program_startup_m | ||
use team_type_m, only: prif_team_type | ||
implicit none | ||
|
||
private | ||
public :: prif_caffeinate, prif_decaffeinate, default_team | ||
public :: prif_init, default_team | ||
|
||
type(prif_team_type), target :: default_team | ||
|
||
interface | ||
|
||
module function prif_caffeinate() result(exit_code) | ||
module function prif_init() result(exit_code) | ||
implicit none | ||
integer exit_code | ||
end function | ||
|
||
module subroutine prif_decaffeinate(exit_code) | ||
implicit none | ||
integer, intent(in) :: exit_code | ||
end subroutine | ||
|
||
end interface | ||
|
||
end module caffeinate_decaffeinate_m | ||
end module program_startup_m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters