params.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
  4. [ <!-- Include general documentation entities -->
  5. <!ENTITY % docentities SYSTEM "../../../docbook/entities.xml">
  6. %docentities;
  7. ]
  8. >
  9. <section id="malloc_test.parameters" xmlns:xi="http://www.w3.org/2001/XInclude">
  10. <sectioninfo>
  11. <revhistory>
  12. <revision>
  13. <revnumber>$Revision$</revnumber>
  14. <date>$Date$</date>
  15. </revision>
  16. </revhistory>
  17. </sectioninfo>
  18. <title>Parameters</title>
  19. <section id="check_content">
  20. <title><varname>check_content</varname></title>
  21. <para>
  22. When doing the tests, check also for the possibility of the
  23. memory being overwritten. When activated, the allocated memory
  24. will be filled with a special pattern, that will be checked on
  25. free.
  26. </para>
  27. <para>
  28. Default: 0 (off).
  29. </para>
  30. <para>
  31. It can be changed also at runtime, via the rpc interface.
  32. </para>
  33. <example>
  34. <title>
  35. Set <varname>check_content</varname> in the config file
  36. </title>
  37. <programlisting>
  38. modparam("malloc_test", "check_content", 1)
  39. </programlisting>
  40. </example>
  41. <example>
  42. <title>
  43. Set <varname>check_content</varname> at runtime via sercmd
  44. </title>
  45. <programlisting>
  46. $ &sercmd; cfg.set_now_int malloc_test check_content 1
  47. </programlisting>
  48. </example>
  49. </section>
  50. </section>