~rdoering/ubuntu/karmic/erlang/fix-535090

« back to all changes in this revision

Viewing changes to lib/tools/doc/src/ref_man.xml

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-02-15 16:42:52 UTC
  • mfrom: (3.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090215164252-q5x4rcf8a5pbesb1
Tags: 1:12.b.5-dfsg-2
Upload to unstable after lenny is released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="latin1" ?>
 
2
<!DOCTYPE application SYSTEM "application.dtd">
 
3
 
 
4
<application>
 
5
  <header>
 
6
    <copyright>
 
7
      <year>1996</year>
 
8
      <year>2007</year>
 
9
      <holder>Ericsson AB, All Rights Reserved</holder>
 
10
    </copyright>
 
11
    <legalnotice>
 
12
  The contents of this file are subject to the Erlang Public License,
 
13
  Version 1.1, (the "License"); you may not use this file except in
 
14
  compliance with the License. You should have received a copy of the
 
15
  Erlang Public License along with this software. If not, it can be
 
16
  retrieved online at http://www.erlang.org/.
 
17
 
 
18
  Software distributed under the License is distributed on an "AS IS"
 
19
  basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 
20
  the License for the specific language governing rights and limitations
 
21
  under the License.
 
22
 
 
23
  The Initial Developer of the Original Code is Ericsson AB.
 
24
    </legalnotice>
 
25
 
 
26
    <title>Tools Reference Manual</title>
 
27
    <prepared></prepared>
 
28
    <docno></docno>
 
29
    <date></date>
 
30
    <rev></rev>
 
31
  </header>
 
32
  <description>
 
33
    <p>The <em>Tools</em> application contains a number of stand-alone
 
34
      tools, which are useful when developing Erlang programs.</p>
 
35
    <taglist>
 
36
      <tag><em>cover</em></tag>
 
37
      <item>A coverage analysis tool for Erlang.</item>
 
38
      <tag><em>cprof</em></tag>
 
39
      <item>A profiling tool that shows how many
 
40
       times each function is called. Uses a kind of local call trace
 
41
       breakpoints containing counters to achieve very low runtime
 
42
       performance degradation.</item>
 
43
      <tag><em>erlang.el</em>- Erlang mode for Emacs</tag>
 
44
      <item>Editing support such as indentation, syntax highlighting,
 
45
       electric commands, module name verification, comment support
 
46
       including paragraph filling, skeletons, tags support and more
 
47
       for erlang source code. </item>
 
48
      <tag><em>eprof</em></tag>
 
49
      <item>A time profiling tool; measure how time is used in Erlang
 
50
       programs. Predecessor of <em>fprof</em> (see below).</item>
 
51
      <tag><em>fprof</em></tag>
 
52
      <item>Another Erlang profiler; measure how time is used in your
 
53
       Erlang programs. Uses trace to file to minimize runtime
 
54
       performance impact, and displays time for calling and called 
 
55
       functions.</item>
 
56
      <tag><em>instrument</em></tag>
 
57
      <item>Utility functions for obtaining and analysing resource usage
 
58
       in an instrumented Erlang runtime system.</item>
 
59
      <tag><em>make</em></tag>
 
60
      <item>A make utility for Erlang similar to UNIX make.</item>
 
61
      <tag><em>tags</em></tag>
 
62
      <item>A tool for generating Emacs TAGS files from Erlang source
 
63
       files.</item>
 
64
      <tag><em>xref</em></tag>
 
65
      <item>A cross reference tool. Can be used to check dependencies 
 
66
       between functions, modules, applications and releases.</item>
 
67
    </taglist>
 
68
  </description>
 
69
  <include file="cover"></include>
 
70
  <include file="cprof"></include>
 
71
  <include file="eprof"></include>
 
72
  <include file="erlang_mode"></include>
 
73
  <include file="fprof"></include>
 
74
  <include file="instrument"></include>
 
75
  <include file="make"></include>
 
76
  <include file="tags"></include>
 
77
  <include file="xref"></include>
 
78
</application>
 
79