Go to main content
Oracle® Developer Studio 12.6: Debugging a Program with dbx

Exit Print View

Updated: June 2017
 
 

uncheck Command

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

Syntax

uncheck

Print the current status of checking.

uncheck -access

Disable access checking.

uncheck -leaks

Disable leak checking.

uncheck -memuse

Disable memory use checking (leak checking is disabled as well).

uncheck -all

Equivalent to uncheck -access; uncheck -memuse.

uncheck [functions] [files] [load-objects]

Equivalent to suppress all in functions files load-objects.

where:

  • functions is one or more function names

  • files is one or more file names

  • load-objects is one or more load object names

See check Command for information about enabling checking.

See suppress Command for information about suppressing errors.

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