source: general/genlib/talloc.xml@ ec32110

12.0 12.1 gimp3 ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18
Last change on this file since ec32110 was cb594b6c, checked in by Xi Ruoyao <xry111@…>, 13 months ago

general: Remove non-exist User Notes link

Part of User Notes removal by
https://www.linuxfromscratch.org/~xry111/remove-nonexist-usernote.sh

  • 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 "02fb35ead70f73af2518234ef3cb1073">
10 <!ENTITY talloc-size "660 KB">
11 <!ENTITY talloc-buildsize "11 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 &lfs113_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 </sect2>
88
89 <sect2 role="installation">
90 <title>Installation of Talloc</title>
91
92 <para>
93 Install <application>Talloc</application> by running the following
94 commands:
95 </para>
96
97<screen><userinput>./configure --prefix=/usr &amp;&amp;
98make</userinput></screen>
99
100 <para>
101 To check the results, issue <command>make check</command>.
102 </para>
103
104 <para>
105 Now, as the <systemitem class="username">root</systemitem> user:
106 </para>
107
108<screen role="root"><userinput>make install</userinput></screen>
109
110 </sect2>
111<!--
112 <sect2 role="commands">
113 <title>Command Explanations</title>
114
115
116 </sect2>
117-->
118
119 <sect2 role="content">
120 <title>Contents</title>
121
122 <segmentedlist>
123 <segtitle>Installed Programs</segtitle>
124 <segtitle>Installed Libraries</segtitle>
125 <segtitle>Installed Directories</segtitle>
126
127 <seglistitem>
128 <seg>
129 None
130 </seg>
131 <seg>
132 libpytalloc-util.&python3-lib-suffix;.so,
133 <!--libpytalloc-util.so,-->
134 libtalloc.so,
135 <!-- NOTE: The below is Optional now. Seems it is not built even
136 if python2 is installed, with the above instructions.
137 talloc.so (Python-2 Module)--> and
138 talloc.&python3-lib-suffix;.so (Python-3 Module)
139 </seg>
140 <seg>
141 None
142 </seg>
143 </seglistitem>
144 </segmentedlist>
145
146 <variablelist>
147 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
148 <?dbfo list-presentation="list"?>
149 <?dbhtml list-presentation="table"?>
150
151 <varlistentry id="libtalloc">
152 <term><filename class="libraryfile">libtalloc.so</filename></term>
153 <listitem>
154 <para>
155 contains a replacement for the <application>Glibc</application>
156 malloc function
157 </para>
158 <indexterm zone="talloc libtalloc">
159 <primary sortas="c-libtalloc">libtalloc.so</primary>
160 </indexterm>
161 </listitem>
162 </varlistentry>
163
164 </variablelist>
165
166 </sect2>
167
168</sect1>
Note: See TracBrowser for help on using the repository browser.