source: general/genlib/talloc.xml

trunk
Last change on this file was 5d0e7b8, checked in by Douglas R. Reno <renodr@…>, 2 months ago

A bunch of tags

  • Property mode set to 100644
File size: 4.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
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 "d29bdf75ce181e148c46b16a83de6d76">
10 <!ENTITY talloc-size "664 KB">
11 <!ENTITY talloc-buildsize "10 MB (with tests)">
12 <!ENTITY talloc-time "0.4 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 &lfs121_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 <xref linkend="gdb"/>,
77 <xref linkend="git"/>,
78 <xref linkend="libnsl"/>,
79 <xref linkend="libtirpc"/>,
80 <xref linkend="valgrind"/>, and
81 <xref linkend="xfsprogs"/>
82 <!-- These are all looked for at build time, but might not actually be used.-->
83 </para>
84
85 </sect2>
86
87 <sect2 role="installation">
88 <title>Installation of Talloc</title>
89
90 <para>
91 Install <application>Talloc</application> by running the following
92 commands:
93 </para>
94
95<screen><userinput>./configure --prefix=/usr &amp;&amp;
96make</userinput></screen>
97
98 <para>
99 To check the results, issue <command>make check</command>.
100 </para>
101
102 <para>
103 Now, as the <systemitem class="username">root</systemitem> user:
104 </para>
105
106<screen role="root"><userinput>make install</userinput></screen>
107
108 </sect2>
109<!--
110 <sect2 role="commands">
111 <title>Command Explanations</title>
112
113
114 </sect2>
115-->
116
117 <sect2 role="content">
118 <title>Contents</title>
119
120 <segmentedlist>
121 <segtitle>Installed Programs</segtitle>
122 <segtitle>Installed Libraries</segtitle>
123 <segtitle>Installed Directories</segtitle>
124
125 <seglistitem>
126 <seg>
127 None
128 </seg>
129 <seg>
130 libpytalloc-util.&python3-lib-suffix;.so,
131 libtalloc.so, and
132 talloc.&python3-lib-suffix;.so (Python 3 Module)
133 </seg>
134 <seg>
135 None
136 </seg>
137 </seglistitem>
138 </segmentedlist>
139
140 <variablelist>
141 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
142 <?dbfo list-presentation="list"?>
143 <?dbhtml list-presentation="table"?>
144
145 <varlistentry id="libtalloc">
146 <term><filename class="libraryfile">libtalloc.so</filename></term>
147 <listitem>
148 <para>
149 contains a replacement for the <application>Glibc</application>
150 malloc function
151 </para>
152 <indexterm zone="talloc libtalloc">
153 <primary sortas="c-libtalloc">libtalloc.so</primary>
154 </indexterm>
155 </listitem>
156 </varlistentry>
157
158 </variablelist>
159
160 </sect2>
161
162</sect1>
Note: See TracBrowser for help on using the repository browser.