MallocGauge Derived Type

type, public, extends(AbstractGauge) :: MallocGauge


Inherits

type~~mallocgauge~~InheritsGraph type~mallocgauge MallocGauge type~abstractgauge AbstractGauge type~mallocgauge->type~abstractgauge

Constructor

public interface MallocGauge

  • private function new_MallocGauge() result(gauge)

    Arguments

    None

    Return Value type(MallocGauge)


Type-Bound Procedures

procedure, public :: get_measurement

  • private function get_measurement(this) result(mem_use)

    Arguments

    Type IntentOptional Attributes Name
    class(MallocGauge), intent(inout) :: this

    Return Value real(kind=REAL64)

Source Code

   type, extends(AbstractGauge) :: MallocGauge
      private
      integer(kind=INT64) :: baseline = 0
   contains
      procedure :: get_measurement
   end type MallocGauge