source: general/genlib/talloc.xml@ bf565e06

11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since bf565e06 was 3f2db3a6, checked in by Pierre Labastie <pierre.labastie@…>, 18 months ago

Remove sect1info tags

They only contain a date tag that is nowhere used.

  • Property mode set to 100644
File size: 4.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY talloc-download-http "https://www.samba.org/ftp/talloc/talloc-&talloc-version;.tar.gz">
8 <!ENTITY talloc-download-ftp " ">
9 <!ENTITY talloc-md5sum "ffdaf52a6572307cc3b6487b9e99cd61">
10 <!ENTITY talloc-size "660 KB">
11 <!ENTITY talloc-buildsize "9.7 MB (with tests)">
12 <!ENTITY talloc-time "0.3 SBU (with tests)">
13]>
14
15<sect1 id="talloc" xreflabel="Talloc-&talloc-version;">
16 <?dbhtml filename="talloc.html"?>
17
18
19 <title>Talloc-&talloc-version;</title>
20
21 <indexterm zone="talloc">
22 <primary sortas="a-Talloc">Talloc</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to Talloc</title>
27
28 <para>
29 <application>Talloc</application> provides a hierarchical, reference
30 counted memory pool system with destructors. It is the core memory
31 allocator used in <application>Samba</application>.
32 </para>
33
34 &lfs112_checked;
35
36 <bridgehead renderas="sect3">Package Information</bridgehead>
37 <itemizedlist spacing="compact">
38 <listitem>
39 <para>
40 Download (HTTP): <ulink url="&talloc-download-http;"/>
41 </para>
42 </listitem>
43 <listitem>
44 <para>
45 Download (FTP): <ulink url="&talloc-download-ftp;"/>
46 </para>
47 </listitem>
48 <listitem>
49 <para>
50 Download MD5 sum: &talloc-md5sum;
51 </para>
52 </listitem>
53 <listitem>
54 <para>
55 Download size: &talloc-size;</para>
56 </listitem>
57 <listitem>
58 <para>
59 Estimated disk space required: &talloc-buildsize;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated build time: &talloc-time;
65 </para>
66 </listitem>
67 </itemizedlist>
68
69 <bridgehead renderas="sect3">Talloc Dependencies</bridgehead>
70
71 <bridgehead renderas="sect4">Optional</bridgehead>
72 <para role="optional">
73 <xref linkend="DocBook"/>,
74 <xref linkend="docbook-xsl"/> and
75 <xref linkend="libxslt"/> (To generate man pages),
76<!-- not accepted anymore
77 <xref linkend="python2"/> (To build Python-2 module),
78--> <xref linkend="gdb"/>,
79 <xref linkend="git"/>,
80 <xref linkend="libnsl"/>,
81 <xref linkend="libtirpc"/>,
82 <xref linkend="valgrind"/>, and
83 <xref linkend="xfsprogs"/>
84 <!-- These are all looked for at build time, but might not actually be used.-->
85 </para>
86
87 <para condition="html" role="usernotes">
88 User Notes: <ulink url="&blfs-wiki;/talloc"/>
89 </para>
90 </sect2>
91
92 <sect2 role="installation">
93 <title>Installation of Talloc</title>
94
95 <para>
96 Install <application>Talloc</application> by running the following
97 commands:
98 </para>
99
100<screen><userinput>./configure --prefix=/usr &amp;&amp;
101make</userinput></screen>
102
103 <para>
104 To check the results, issue <command>make check</command>.
105 </para>
106
107 <para>
108 Now, as the <systemitem class="username">root</systemitem> user:
109 </para>
110
111<screen role="root"><userinput>make install</userinput></screen>
112
113 </sect2>
114<!--
115 <sect2 role="commands">
116 <title>Command Explanations</title>
117
118
119 </sect2>
120-->
121
122 <sect2 role="content">
123 <title>Contents</title>
124
125 <segmentedlist>
126 <segtitle>Installed Programs</segtitle>
127 <segtitle>Installed Libraries</segtitle>
128 <segtitle>Installed Directories</segtitle>
129
130 <seglistitem>
131 <seg>
132 None
133 </seg>
134 <seg>
135 libpytalloc-util.&python3-lib-suffix;.so,
136 <!--libpytalloc-util.so,-->
137 libtalloc.so,
138 <!-- NOTE: The below is Optional now. -->
139 talloc.so (Python-2 Module) and
140 talloc.&python3-lib-suffix;.so (Python-3 Module)
141 </seg>
142 <seg>
143 None
144 </seg>
145 </seglistitem>
146 </segmentedlist>
147
148 <variablelist>
149 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
150 <?dbfo list-presentation="list"?>
151 <?dbhtml list-presentation="table"?>
152
153 <varlistentry id="libtalloc">
154 <term><filename class="libraryfile">libtalloc.so</filename></term>
155 <listitem>
156 <para>
157 contains a replacement for the <application>Glibc</application>
158 malloc function
159 </para>
160 <indexterm zone="talloc libtalloc">
161 <primary sortas="c-libtalloc">libtalloc.so</primary>
162 </indexterm>
163 </listitem>
164 </varlistentry>
165
166 </variablelist>
167
168 </sect2>
169
170</sect1>
Note: See TracBrowser for help on using the repository browser.