Add an i18n section. Include the corresponding entity. Template for i18n
[platform/upstream/glib.git] / docs / reference / glib / running.sgml
1 <refentry id="glib-running" revision="17 Jan 2002">
2 <refmeta>
3 <refentrytitle>Running GLib Applications</refentrytitle>
4 <manvolnum>3</manvolnum>
5 <refmiscinfo>GLib Library</refmiscinfo>
6 </refmeta>
7
8 <refnamediv>
9 <refname>Running GLib Applications</refname>
10 <refpurpose>
11 How to run and debug your GLib application
12 </refpurpose>
13 </refnamediv>
14
15 <refsect1>
16 <title>Running and debugging GLib Applications</title>
17
18 <refsect2>
19 <title>Environment variables</title>
20
21 <para> 
22 GLib inspects a few of environment variables in addition to standard
23 variables like <envar>LANG</envar>, <envar>PATH</envar> or <envar>HOME</envar>. 
24 </para>
25
26 <formalpara>
27   <title><envar>G_FILENAME_ENCODING</envar></title>
28
29   <para>
30     This environment variable can be set to a comma-separated list of character
31     set names. GLib assumes that filenames are encoded in the first character 
32     set from that list rather than in UTF-8. The special token "@locale" can be
33     used to specify the character set for the current locale.
34   </para>
35 </formalpara>
36
37 <formalpara>
38   <title><envar>G_BROKEN_FILENAMES</envar></title>
39
40   <para>
41     If this environment variable is set, GLib assumes that filenames are in 
42     the locale encoding rather than in UTF-8. G_FILENAME_ENCODING takes
43     priority over G_BROKEN_FILENAMES. 
44   </para>
45 </formalpara>
46
47 <formalpara>
48   <title><envar>G_MESSAGES_PREFIXED</envar></title>
49
50   <para>
51     A list of log levels for which messages should be prefixed by the 
52     program name and PID of the application. The default is to prefix
53     everything except <literal>G_LOG_LEVEL_MESSAGE</literal> and <literal>G_LOG_LEVEL_INFO</literal>. 
54   </para>
55 </formalpara>
56
57 <formalpara>
58   <title><envar>G_DEBUG</envar></title>
59
60   <para>
61     If GLib has been configured with <option>--enable-debug=yes</option>,
62     this variable can be set to a list of debug options, which cause GLib
63     to print out different types of debugging information.
64     <variablelist>
65       <varlistentry>
66         <term>fatal_warnings</term>
67         <listitem><para>Causes GLib to abort the program at the first call
68            to <link linkend="g-warning">g_warning</link>(). This option is 
69            special in that it doesn't require GLib to be configured with 
70            debugging support.</para>
71         </listitem>
72       </varlistentry>
73     </variablelist>
74   </para>
75 </formalpara>
76
77 <formalpara>
78   <title><envar>G_RANDOM_VERSION</envar></title>
79
80   <para>
81     If this environment variable is set to '2.0', the outdated
82     pseudo-random number seeding and generation algorithms from
83     GLib-2.0 are used instead of the new better ones. Use the GLib-2.0
84     algorithms only if you have sequences of numbers generated with
85     Glib-2.0 that you need to reproduce exactly.  
86   </para>
87 </formalpara> 
88
89 </refsect2>
90
91 <refsect2>
92 <title>Traps and traces</title>
93
94 <para>
95 Some code portions contain trap variables that can be set during debugging 
96 time if GLib has been configured with <option>--enable-debug=yes</option>. 
97 Such traps lead to immediate code halts to examine the current program state 
98 and backtrace.
99 </para>
100
101 <para>
102 Currently, the following trap variables exist:
103 <programlisting>
104 static volatile gulong g_trap_free_size;
105 static volatile gulong g_trap_realloc_size;
106 static volatile gulong g_trap_malloc_size;
107 </programlisting>
108 If set to a size > 0, <link linkend="g-free">g_free</link>(), 
109 <link linkend="g-realloc">g_realloc</link>() and 
110 <link linkend="g-malloc">g_malloc</link>() will be intercepted if the size 
111 matches the size of the corresponding memory block. This will only work with 
112 <literal>g_mem_set_vtable (glib_mem_profiler_table)</literal> upon startup 
113 though, because memory profiling is required to match on the memory block sizes.
114 </para>
115 </refsect2>
116
117 </refsect1>
118
119 </refentry>