pure_performance Subroutine

public pure subroutine pure_performance(buf, message, module, procedure)

Buffer a performance-level message

Arguments

Type IntentOptional Attributes Name
type(log_buffer_type), intent(inout) :: buf
character(len=*), intent(in) :: message
character(len=*), intent(in), optional :: module
character(len=*), intent(in), optional :: procedure

Calls

proc~~pure_performance~~CallsGraph proc~pure_performance pure_performance proc~buffer_message buffer_message proc~pure_performance->proc~buffer_message

Source Code

   pure subroutine pure_performance(buf, message, module, procedure)
      !! Buffer a performance-level message
      type(log_buffer_type), intent(inout) :: buf
      character(*), intent(in) :: message
      character(*), intent(in), optional :: module, procedure
      call buffer_message(buf, "PERFORMANCE", message, module, procedure)
   end subroutine pure_performance