File: introduction.page

package info (click to toggle)
sysprof 48.0-2
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 8,924 kB
  • sloc: ansic: 72,988; xml: 168; cpp: 49; sh: 34; makefile: 26
file content (57 lines) | stat: -rw-r--r-- 1,922 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<page xmlns="http://projectmallard.org/1.0/"
      xmlns:its="http://www.w3.org/2005/11/its"
      type="topic"
      id="introduction">

  <info>
    <link type="guide" xref="index"/>
<!--
    <link type="guide" xref="index#features"/>
    <link type="seealso" xref="anotherpageid"/>
-->
    <revision pkgversion="3.20" date="2016-04-04" status="stub" />

    <credit type="author">
      <name>Christian Hergert</name>
      <email its:translate="no">christian@hergert.me</email>
      <years>2016</years>
    </credit>
 
    <include href="legal.xml" xmlns="http://www.w3.org/2001/XInclude"/>

    <desc>Welcome to <app>Sysprof</app>!</desc>
  </info>

  <title>Introduction</title>

  <p><app>Sysprof</app> is a system profiler for Linux that targets
  the GNOME desktop.</p>

  <section id="what-is-a-profiler">
    <info>
      <link type="guide" xref="index"/>
      <desc>Differences between tracing and sampling</desc>
    </info>
    <title>What is a Profiler?</title>

    <p>A profiler is an application that records information about an
application or system while it runs. That information can be explored to
gain insight into how the application could be changed to perform
better.</p>

    <p>Two common categories of software profilers exist, commonly referred
to as either tracing or sampling profilers. What is meant by tracing
profiler is that every function call executed by the program is known to the
profiler. A sampling profiler works by inspecting the state of the
program on a regular frequency and therefore does not see every function
call executed by the program.</p>

    <p>Both tracing and sampling profilers have their advantages. A
notable advantage of a sampling profiler is that the overhead is much
less than that of a tracing profiler, making it easier to use for
software that requires interactivity.</p>

    <p><app>Sysprof</app> is a sampling profiler.</p>
  </section>

</page>