Sun Studio 12: Debugging a Program With dbx

uncheck Command

The uncheck command disables checking of memory access, leaks, or usage. It is valid only in native mode.


Note –

The uncheck command is available only on Solaris platforms.


Syntax

uncheck

Print current status of checking.

uncheck -access

Turn off access checking.

uncheck -leaks

Turn off leak checking.

uncheck -memuse

Turn off memory use checking (leak checking is turned off as well).

uncheck -all

Equivalent to uncheck -access; uncheck -memuse.

uncheck [functions] [files] [loadobjects]

Equivalent to suppress all in functions files loadobjects.

where:

functions is one or more function names.

files is one or more file names.

loadobjects is one or more loadobject names

See check Command for information to turn on checking.

See suppress Command for information on suppressing of errors.

See Capabilities of Runtime Checking for an introduction to runtime checking.