[source]

Class uvm_resource_options

uvm_pkg::uvm_resource_options + is_auditing(): bit + turn_off_auditing(): void + turn_on_auditing(): void

Inheritance Diagram of uvm_resource_options

Options include:

auditing

on/off

The default for auditing is on.  You may wish to turn it off to
for performance reasons.  With auditing off memory is not
consumed for storage of auditing information and time is not
spent collecting and storing auditing information.  Of course,
during the period when auditing is off no audit trail information
is available

Functions

static function void turn_on_auditing ( ) [source]

Turn auditing on for the resource database. This causes all reads and writes to the database to store information about the accesses. Auditing is turned on by default.

static function void turn_off_auditing ( ) [source]

Turn auditing off for the resource database. If auditing is turned off, it is not possible to get extra information about resource database accesses.

static function bit is_auditing ( ) [source]

Returns 1 if the auditing facility is on and 0 if it is off.