RCCE_debug_unset.3 1005 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .TH RCCE 3 2010-03-14 "RCCE MANPAGE" "RCCE Library"
  2. .SH NAME
  3. RCCE_debug_unset \- enables runtime debug messages for RCCE library calls.
  4. .SH SYNOPSIS
  5. .B #include <rcce.h>
  6. .sp
  7. .BI "int RCCE_debug_unset(int " dbg_disable );
  8. .SH DESCRIPTION
  9. .BR RCCE_debug_unset()
  10. disables runtime debug messages for RCCE library calls.
  11. The parameter dbg_disable can take on the following values.
  12. .TP
  13. .B dbg_disable
  14. Disables runtime debug messages for RCCE library calls. The parameter dbg_disable can take on the following values.
  15. .BR RCCE_DEBUG_SYNCH
  16. Ignore error messages concerning synchronization.
  17. .br
  18. .B RCCE_DEBUG_COMM
  19. Ignore error messages concerning communication.
  20. .br
  21. .BR RCCE_DEBUG_RPC
  22. Ignore error messages concerning power management.
  23. .br
  24. .BR RCCE_DEBUG_ALL
  25. Ignore all error messages. Thisis the default.
  26. .SH "RETURN VALUE"
  27. Upon successful completion
  28. .BR RCCE_debug_unset ()
  29. returns
  30. .BR RCCE_SUCCESS .
  31. .SH ERRORS
  32. Look in
  33. .BR rcce.h
  34. for additional error codes.
  35. .SH "SEE ALSO"
  36. rcce.h(5)
  37. .SH EXAMPLE