| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .TH RCCE 3 2010-03-14 "RCCE MANPAGE" "RCCE Library"
- .SH NAME
- RCCE_debug_set \- enables runtime debug messages for RCCE library calls.
- .SH SYNOPSIS
- .B #include <rcce.h>
- .sp
- .BI "int RCCE_debug_set(int " dbg_enable );
- .SH DESCRIPTION
- .BR RCCE_debug_set()
- enables runtime debug messages for RCCE library calls.
- Depending on the value of the input parameter dbg_enable, error messages concerning
- synchronization, communication, power management, or all of the above will be printed.
- The default is to print all error messages.
- .TP
- .B dbg_enable
- Enables runtime debug messages for RCCE library calls. The parameter dbg_enable can take on the following values.
- .BR RCCE_DEBUG_SYNCH
- Print error messages concerning synchronization.
- .br
- .B RCCE_DEBUG_COMM
- Print error messages concerning communication.
- .br
- .BR RCCE_DEBUG_RPC
- Print error messages concerning power management.
- .SH "RETURN VALUE"
- Upon successful completion
- .BR RCCE_debug_set ()
- returns
- .BR RCCE_SUCCESS .
- .SH ERRORS
- Look in
- .BR rcce.h
- for additional error codes.
- .SH "SEE ALSO"
- rcce.h(5)
- .SH EXAMPLE
|