source: general/genlib/talloc.xml@ 2bbc6b0e

11.0 11.1 11.2 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 upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 2bbc6b0e was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

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