svcadm(8)을 검색하려면 섹션에서 8 을 선택하고, 맨 페이지 이름에 svcadm을 입력하고 검색을 누른다.
bcheck(1)
bcheck(1) User Commands bcheck(1)
NAME
bcheck - batch utility for Runtime Checking (RTC)
SYNOPSIS
bcheck [ -access | -all | -leaks | -memuse ] [ -o logfile ]
[ -q ] [ -s script ] program [ args ]
DESCRIPTION
bcheck, a batch interface to dbx's Runtime Checking (RTC), is a shell
script which runs the program under dbx, with any specified args. The
RTC error output is placed in the specified logfile, or the default
file program.errs. If this file already exists, its contents are over‐
written. Although bcheck can perform memory leak checking, memory
access checking, memory use checking or all three, the default is to
perform leak checking only.
Before running bcheck on a system running the Linux OS, you must set
the _DBX_EXEC_32 environment variable.
OPTIONS
-access
Perform memory access checking
-all
Perform memory access and memory leak checking
-leaks
Perform memory leak checking only (Default)
-memuse
Perform memory use checking, which includes memory leaks checking
-o logfile
Place the error output in logfile, or in the default file pro‐
gram.errs.
-q
Make bcheck completely quiet, and return with the same exit status
as the 'program'. Useful when you want to use bcheck in scripts,
makefiles, and such
-s script
Read in the dbx commands contained in script before execution. You
can tailor the error output of bcheck by using commands such as
suppress and dbxenv.
EXAMPLES
To perform leaks checking on hello:
bcheck hello
To perform access checking on mach with an argument:
bcheck -access mach 5
To perform access and memuse checking on 'cc' quietly and exit with
normal exit status:
bcheck -all -q cc -c prog.c
To perform access checking on foo, suppressing all rui errors:
echo suppress rui > foo.sup bcheck -access -s foo.sup foo 1
SEE ALSO
dbx(1)
Studio 12.6 May 2017 bcheck(1)