summaryrefslogtreecommitdiffstats
path: root/po/de/man1/memusage.1.po
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:43:11 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 19:43:11 +0000
commitfc22b3d6507c6745911b9dfcc68f1e665ae13dbc (patch)
treece1e3bce06471410239a6f41282e328770aa404a /po/de/man1/memusage.1.po
parentInitial commit. (diff)
downloadmanpages-l10n-fc22b3d6507c6745911b9dfcc68f1e665ae13dbc.tar.xz
manpages-l10n-fc22b3d6507c6745911b9dfcc68f1e665ae13dbc.zip
Adding upstream version 4.22.0.upstream/4.22.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'po/de/man1/memusage.1.po')
-rw-r--r--po/de/man1/memusage.1.po783
1 files changed, 783 insertions, 0 deletions
diff --git a/po/de/man1/memusage.1.po b/po/de/man1/memusage.1.po
new file mode 100644
index 00000000..6cf9b631
--- /dev/null
+++ b/po/de/man1/memusage.1.po
@@ -0,0 +1,783 @@
+# German translation of manpages
+# This file is distributed under the same license as the manpages-l10n package.
+# Copyright © of this file:
+# Helge Kreutzmann <debian@helgefjell.de>, 2023.
+msgid ""
+msgstr ""
+"Project-Id-Version: manpages-l10n 4.20.0\n"
+"POT-Creation-Date: 2024-03-01 17:01+0100\n"
+"PO-Revision-Date: 2023-11-27 17:37+0100\n"
+"Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n"
+"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. type: TH
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "memusage"
+msgstr "memusage"
+
+#. type: TH
+#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#, no-wrap
+msgid "2023-10-31"
+msgstr "31. Oktober 2023"
+
+#. type: TH
+#: archlinux fedora-40 fedora-rawhide mageia-cauldron
+#, no-wrap
+msgid "Linux man-pages 6.06"
+msgstr "Linux man-pages 6.06"
+
+#. type: SH
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "NAME"
+msgstr "BEZEICHNUNG"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "memusage - profile memory usage of a program"
+msgstr "memusage - Speicherverwendung eines Programms profilieren"
+
+#. type: SH
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "SYNOPSIS"
+msgstr "ÜBERSICHT"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<memusage> [I<option>]... I<program> [I<programoption>]...\n"
+msgstr "B<memusage> [I<Option>]… I<Programm> [I<Programmoption>]…\n"
+
+#. type: SH
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "DESCRIPTION"
+msgstr "BESCHREIBUNG"
+
+# FIXME bash → B<bash>(1)
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"B<memusage> is a bash script which profiles memory usage of the program, "
+"I<program>. It preloads the B<libmemusage.so> library into the caller's "
+"environment (via the B<LD_PRELOAD> environment variable; see B<ld.so>(8)). "
+"The B<libmemusage.so> library traces memory allocation by intercepting calls "
+"to B<malloc>(3), B<calloc>(3), B<free>(3), and B<realloc>(3); optionally, "
+"calls to B<mmap>(2), B<mremap>(2), and B<munmap>(2) can also be intercepted."
+msgstr ""
+"B<memusage> ist ein B<bash>(1)-Skript, das die Speicherverwendung des "
+"Programms I<Programm> profiliert. Es lädt die Bibliothek B<libmemusage.so> "
+"vorab in die Umgebung des Aufrufenden (mittels der Umgebungsvariablen "
+"B<LD_PRELOAD>, siehe B<ld.so>(8)). Die Bibliothek B<libmemusage.so> verfolgt "
+"die Speicherbelegungen mittels Abfangens der Aufrufe von B<malloc>(3), "
+"B<calloc>(3), B<free>(3) und B<realloc>(3) nach; optional können auch die "
+"Aufrufe von B<mmap>(2), B<mremap>(2) und B<munmap>(2) abgefangen werden."
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"B<memusage> can output the collected data in textual form, or it can use "
+"B<memusagestat>(1) (see the B<-p> option, below) to create a PNG file "
+"containing graphical representation of the collected data."
+msgstr ""
+"B<memusage> kann die gesammelten Daten in textueller Form ausgeben oder es "
+"kann (mittels der nachfolgend beschriebenen Option B<-p>) B<memusagestat>(1) "
+"verwenden, um eine PNG-Datei zu erstellen, die die graphische Darstellung "
+"der gesammelten Daten enthält."
+
+#. type: SS
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "Memory usage summary"
+msgstr "Speicherverwendungszusammenfassung"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"The \"Memory usage summary\" line output by B<memusage> contains three "
+"fields:"
+msgstr ""
+"Die von B<memusage> ausgegebene Zeile »Memory usage summary« enthält drei "
+"Felder:"
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<heap total>"
+msgstr "B<heap total>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"Sum of I<size> arguments of all B<malloc>(3) calls, products of arguments "
+"(I<nmemb>*I<size>) of all B<calloc>(3) calls, and sum of I<length> "
+"arguments of all B<mmap>(2) calls. In the case of B<realloc>(3) and "
+"B<mremap>(2), if the new size of an allocation is larger than the previous "
+"size, the sum of all such differences (new size minus old size) is added."
+msgstr ""
+"Summe der Argumente I<Größe> für alle B<malloc>(3)-Aufrufe; Produkte der "
+"Argumente (I<nmemb>*I<Größe>) aller B<calloc>(3)-Aufrufe und die Summe aller "
+"Argumente I<Länge> aller B<mmap>(2)-Aufrufe. Im Falle von B<realloc>(3) und "
+"B<mremap>(2) wird die Summe aller Differenzen (neue Größe minus alter Größe) "
+"hinzugefügt, falls die neue Größenreservierung die vorherige Größe "
+"überschreitet."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<heap peak>"
+msgstr "B<heap peak>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"Maximum of all I<size> arguments of B<malloc>(3), all products of "
+"I<nmemb>*I<size> of B<calloc>(3), all I<size> arguments of B<realloc>(3), "
+"I<length> arguments of B<mmap>(2), and I<new_size> arguments of B<mremap>(2)."
+msgstr ""
+"Maximum aller Argumente I<Größe> aller B<malloc>(3), alle Produkte von "
+"I<nmemb>*I<Größe> von B<calloc>(3), aller Argumente I<Größe> von "
+"B<realloc>(3), Argumente I<Länge> von B<mmap>(2) und Argumente I<neue_Größe> "
+"von B<mremap>(2)."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<stack peak>"
+msgstr "B<stack peak>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"Before the first call to any monitored function, the stack pointer address "
+"(base stack pointer) is saved. After each function call, the actual stack "
+"pointer address is read and the difference from the base stack pointer "
+"computed. The maximum of these differences is then the stack peak."
+msgstr ""
+"Vor dem erstmaligen Aufruf jeder überwachten Funktion wird die Adresse des "
+"Stapel-Zeigers (Basis-Stapelzeiger) gesichert. Nach jedem Funktionsaufruf "
+"wird die tatsächliche Adresse gelesen und die Differenz zum Basis-"
+"Stapelzeiger berechnet. Das Maximum dieser Differenzen ist der »stack peak«."
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"Immediately following this summary line, a table shows the number calls, "
+"total memory allocated or deallocated, and number of failed calls for each "
+"intercepted function. For B<realloc>(3) and B<mremap>(2), the additional "
+"field \"nomove\" shows reallocations that changed the address of a block, "
+"and the additional \"dec\" field shows reallocations that decreased the size "
+"of the block. For B<realloc>(3), the additional field \"free\" shows "
+"reallocations that caused a block to be freed (i.e., the reallocated size "
+"was 0)."
+msgstr ""
+"Direkt nach dieser Zusammenfassungszeile zeigt eine Tabelle die Anzahl der "
+"Aufrufe, den insgesamt reservierten oder freigegebenen Speicher und die "
+"Anzahl der fehlgeschlagenen Aufrufe für jede abgefangene Funktion. Für "
+"B<realloc>(3) und B<mremap>(2) zeigt das zusätzliche Feld »nomove« die "
+"Umreservierungen, die die Adresse eines Blocks änderten und das zusätzliche "
+"Feld »dec« zeigt die Umreservierungen, die die Größe eines Blocks "
+"verkleinerten. Für B<realloc>(3) zeigt das zusätzliche Feld »free« die "
+"Umreservierungen, die zur Freigabe eines Blocks führten (d.h. die "
+"umreservierte Größe war 0)."
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"The \"realloc/total memory\" of the table output by B<memusage> does not "
+"reflect cases where B<realloc>(3) is used to reallocate a block of memory "
+"to have a smaller size than previously. This can cause sum of all \"total "
+"memory\" cells (excluding \"free\") to be larger than the \"free/total "
+"memory\" cell."
+msgstr ""
+"Das »realloc/total memory« der Tabellenausgabe von B<memusage> "
+"berücksichtigt Fälle nicht, bei denen B<realloc>(3) zur Umreservierung eines "
+"Speicherblocks zur Verkleinerung der vorherigen Größe verwandt wird. Dies "
+"kann zu einer Summe von allen »total memory«-Zellen führen (ausschließlich "
+"»free«), die größer als die Zelle »free/total memory« ist."
+
+#. type: SS
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "Histogram for block sizes"
+msgstr "Histogramm für Blockgrößen"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"The \"Histogram for block sizes\" provides a breakdown of memory allocations "
+"into various bucket sizes."
+msgstr ""
+"Das »Histogram for block sizes« stellt eine Aufteilung der "
+"Speicherreservierungen in verschiedene Topfgrößen dar."
+
+#. type: SH
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "OPTIONS"
+msgstr "OPTIONEN"
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-n\\ >I<name>,\\ B<--progname=>I<name>"
+msgstr "B<-n\\ >I<Name>,\\ B<--progname=>I<Name>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Name of the program file to profile."
+msgstr "Name des zu profilierenden Programms."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-p\\ >I<file>,\\ B<--png=>I<file>"
+msgstr "B<-p\\ >I<Datei>,\\ B<--png=>I<Datei>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Generate PNG graphic and store it in I<file>."
+msgstr "Erstellt eine PNG-Graphik und speichert sie in I<Datei>."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-d\\ >I<file>,\\ B<--data=>I<file>"
+msgstr "B<-d\\ >I<Datei>,\\ B<--data=>I<Datei>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Generate binary data file and store it in I<file>."
+msgstr "Erstellt eine binäre Datendatei und speichert sie in I<Datei>."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-u>,\\ B<--unbuffered>"
+msgstr "B<-u>,\\ B<--unbuffered>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Do not buffer output."
+msgstr "Puffert die Ausgabe nicht."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-b\\ >I<size>,\\ B<--buffer=>I<size>"
+msgstr "B<-b\\ >I<Größe>,\\ B<--buffer=>I<Größe>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Collect I<size> entries before writing them out."
+msgstr "Sammelt I<Größe> Einträge, bevor sie herausgeschrieben werden."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<--no-timer>"
+msgstr "B<--no-timer>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Disable timer-based (B<SIGPROF>) sampling of stack pointer value."
+msgstr ""
+"Deaktiviert Timer-basierte (B<SIGPROF>) Probennahme des Stapelzeigerwertes."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-m>,\\ B<--mmap>"
+msgstr "B<-m>,\\ B<--mmap>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Also trace B<mmap>(2), B<mremap>(2), and B<munmap>(2)."
+msgstr "Verfolgt B<mmap>(2), B<mremap>(2) und B<munmap>(2) auch nach."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-?>,\\ B<--help>"
+msgstr "B<-?>,\\ B<--help>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Print help and exit."
+msgstr "Hilfe ausgeben und beenden."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<--usage>"
+msgstr "B<--usage>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Print a short usage message and exit."
+msgstr "Gibt eine kurze Gebrauchsinformation aus und beendet sich."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-V>,\\ B<--version>"
+msgstr "B<-V>,\\ B<--version>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Print version information and exit."
+msgstr "Gibt Versionsinformationen aus und beendet sich."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "The following options apply only when generating graphical output:"
+msgstr "Die folgenden Optionen sind nur bei der Erstellung graphischer Ausgaben relevant:"
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-t>,\\ B<--time-based>"
+msgstr "B<-t>,\\ B<--time-based>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"Use time (rather than number of function calls) as the scale for the X axis."
+msgstr ""
+"Verwendet die Zeit (anstelle der Anzahl der Funktionsaufrufe) als Skala für "
+"die X-Achse."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-T>,\\ B<--total>"
+msgstr "B<-T>,\\ B<--total>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Also draw a graph of total memory use."
+msgstr "Zeichnet auch eine Graphik der gesamten Speicherverwendung."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<--title=>I<name>"
+msgstr "B<--title=>I<Name>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Use I<name> as the title of the graph."
+msgstr "Verwendet I<Name> als Titel für die Graphik."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-x\\ >I<size>,\\ B<--x-size=>I<size>"
+msgstr "B<-x\\ >I<Größe>,\\ B<--x-size=>I<Größe>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Make the graph I<size> pixels wide."
+msgstr "Setzt die Breite der Graphik auf I<Größe> Pixel."
+
+#. type: TP
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "B<-y\\ >I<size>,\\ B<--y-size=>I<size>"
+msgstr "B<-y\\ >I<Größe>,\\ B<--y-size=>I<Größe>"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "Make the graph I<size> pixels high."
+msgstr "Setzt die Höhe der Graphik auf I<Größe> Pixel."
+
+#. type: SH
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "EXIT STATUS"
+msgstr "EXIT-STATUS"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"The exit status of B<memusage> is equal to the exit status of the profiled "
+"program."
+msgstr ""
+"Der Exit-Status von B<memusage> ist identisch zu dem Exit-Status des "
+"profilierten Programms."
+
+#. type: SH
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "BUGS"
+msgstr "FEHLER"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"To report bugs, see E<.UR http://www.gnu.org/software/libc/bugs.html> E<.UE>"
+msgstr ""
+"Um Fehler (auf Englisch) zu melden, siehe E<.UR http://www.gnu.org/software/"
+"libc/bugs.html> E<.UE>"
+
+#. type: SH
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "EXAMPLES"
+msgstr "BEISPIELE"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid ""
+"Below is a simple program that reallocates a block of memory in cycles that "
+"rise to a peak before then cyclically reallocating the memory in smaller "
+"blocks that return to zero. After compiling the program and running the "
+"following commands, a graph of the memory usage of the program can be found "
+"in the file I<memusage.png>:"
+msgstr ""
+"Es folgt ein einfaches Programm, das zyklisch Speicherblöcke neu reserviert, "
+"die zu einer Spitzenbelastung ansteigen und dann zyklisch kleinere "
+"Speicherblöcke neu reserviert, die auf Null zurückkehren. Nach der "
+"Kompilierung und Ausführung der folgenden Befehle, ist eine Graphik der "
+"Speicherverwendung des Programms in der Datei I<memusage.png> verfügbar:"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid ""
+"$ B<memusage --data=memusage.dat ./a.out>\n"
+"\\&...\n"
+"Memory usage summary: heap total: 45200, heap peak: 6440, stack peak: 224\n"
+" total calls total memory failed calls\n"
+" malloc| 1 400 0\n"
+"realloc| 40 44800 0 (nomove:40, dec:19, free:0)\n"
+" calloc| 0 0 0\n"
+" free| 1 440\n"
+"Histogram for block sizes:\n"
+" 192-207 1 2% ================\n"
+"\\&...\n"
+" 2192-2207 1 2% ================\n"
+" 2240-2255 2 4% =================================\n"
+" 2832-2847 2 4% =================================\n"
+" 3440-3455 2 4% =================================\n"
+" 4032-4047 2 4% =================================\n"
+" 4640-4655 2 4% =================================\n"
+" 5232-5247 2 4% =================================\n"
+" 5840-5855 2 4% =================================\n"
+" 6432-6447 1 2% ================\n"
+"$ B<memusagestat memusage.dat memusage.png>\n"
+msgstr ""
+"$ B<memusage --data=memusage.dat ./a.out>\n"
+"…\n"
+"Memory usage summary: heap total: 45200, heap peak: 6440, stack peak: 224\n"
+" total calls total memory failed calls\n"
+" malloc| 1 400 0\n"
+"realloc| 40 44800 0 (nomove:40, dec:19, free:0)\n"
+" calloc| 0 0 0\n"
+" free| 1 440\n"
+"Histogram for block sizes:\n"
+" 192-207 1 2% ================\n"
+"…\n"
+" 2192-2207 1 2% ================\n"
+" 2240-2255 2 4% =================================\n"
+" 2832-2847 2 4% =================================\n"
+" 3440-3455 2 4% =================================\n"
+" 4032-4047 2 4% =================================\n"
+" 4640-4655 2 4% =================================\n"
+" 5232-5247 2 4% =================================\n"
+" 5840-5855 2 4% =================================\n"
+" 6432-6447 1 2% ================\n"
+"$ B<memusagestat memusage.dat memusage.png>\n"
+
+#. type: SS
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "Program source"
+msgstr "Programmquelltext"
+
+#. type: Plain text
+#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron
+#: opensuse-tumbleweed
+#, no-wrap
+msgid ""
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+"\\&\n"
+"#define CYCLES 20\n"
+"\\&\n"
+"int\n"
+"main(int argc, char *argv[])\n"
+"{\n"
+" int i, j;\n"
+" size_t size;\n"
+" int *p;\n"
+"\\&\n"
+" size = sizeof(*p) * 100;\n"
+" printf(\"malloc: %zu\\en\", size);\n"
+" p = malloc(size);\n"
+"\\&\n"
+" for (i = 0; i E<lt> CYCLES; i++) {\n"
+" if (i E<lt> CYCLES / 2)\n"
+" j = i;\n"
+" else\n"
+" j--;\n"
+"\\&\n"
+" size = sizeof(*p) * (j * 50 + 110);\n"
+" printf(\"realloc: %zu\\en\", size);\n"
+" p = realloc(p, size);\n"
+"\\&\n"
+" size = sizeof(*p) * ((j + 1) * 150 + 110);\n"
+" printf(\"realloc: %zu\\en\", size);\n"
+" p = realloc(p, size);\n"
+" }\n"
+"\\&\n"
+" free(p);\n"
+" exit(EXIT_SUCCESS);\n"
+"}\n"
+msgstr ""
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+"\\&\n"
+"#define CYCLES 20\n"
+"\\&\n"
+"int\n"
+"main(int argc, char *argv[])\n"
+"{\n"
+" int i, j;\n"
+" size_t size;\n"
+" int *p;\n"
+"\\&\n"
+" size = sizeof(*p) * 100;\n"
+" printf(\"malloc: %zu\\en\", size);\n"
+" p = malloc(size);\n"
+"\\&\n"
+" for (i = 0; i E<lt> CYCLES; i++) {\n"
+" if (i E<lt> CYCLES / 2)\n"
+" j = i;\n"
+" else\n"
+" j--;\n"
+"\\&\n"
+" size = sizeof(*p) * (j * 50 + 110);\n"
+" printf(\"realloc: %zu\\en\", size);\n"
+" p = realloc(p, size);\n"
+"\\&\n"
+" size = sizeof(*p) * ((j + 1) * 150 + 110);\n"
+" printf(\"realloc: %zu\\en\", size);\n"
+" p = realloc(p, size);\n"
+" }\n"
+"\\&\n"
+" free(p);\n"
+" exit(EXIT_SUCCESS);\n"
+"}\n"
+
+#. type: SH
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+#, no-wrap
+msgid "SEE ALSO"
+msgstr "SIEHE AUCH"
+
+#. type: Plain text
+#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide
+#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed
+msgid "B<memusagestat>(1), B<mtrace>(1), B<ld.so>(8)"
+msgstr "B<memusagestat>(1), B<mtrace>(1), B<ld.so>(8)"
+
+#. type: TH
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "2023-01-07"
+msgstr "7. Januar 2023"
+
+#. type: TH
+#: debian-bookworm
+#, no-wrap
+msgid "Linux man-pages 6.03"
+msgstr "Linux man-pages 6.03"
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid ""
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+msgstr ""
+"#include E<lt>stdio.hE<gt>\n"
+"#include E<lt>stdlib.hE<gt>\n"
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid "#define CYCLES 20\n"
+msgstr "#define CYCLES 20\n"
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid ""
+"int\n"
+"main(int argc, char *argv[])\n"
+"{\n"
+" int i, j;\n"
+" size_t size;\n"
+" int *p;\n"
+msgstr ""
+"int\n"
+"main(int argc, char *argv[])\n"
+"{\n"
+" int i, j;\n"
+" size_t size;\n"
+" int *p;\n"
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid ""
+" size = sizeof(*p) * 100;\n"
+" printf(\"malloc: %zu\\en\", size);\n"
+" p = malloc(size);\n"
+msgstr ""
+" size = sizeof(*p) * 100;\n"
+" printf(\"malloc: %zu\\en\", size);\n"
+" p = malloc(size);\n"
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid ""
+" for (i = 0; i E<lt> CYCLES; i++) {\n"
+" if (i E<lt> CYCLES / 2)\n"
+" j = i;\n"
+" else\n"
+" j--;\n"
+msgstr ""
+" for (i = 0; i E<lt> CYCLES; i++) {\n"
+" if (i E<lt> CYCLES / 2)\n"
+" j = i;\n"
+" else\n"
+" j--;\n"
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid ""
+" size = sizeof(*p) * (j * 50 + 110);\n"
+" printf(\"realloc: %zu\\en\", size);\n"
+" p = realloc(p, size);\n"
+msgstr ""
+" size = sizeof(*p) * (j * 50 + 110);\n"
+" printf(\"realloc: %zu\\en\", size);\n"
+" p = realloc(p, size);\n"
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid ""
+" size = sizeof(*p) * ((j + 1) * 150 + 110);\n"
+" printf(\"realloc: %zu\\en\", size);\n"
+" p = realloc(p, size);\n"
+" }\n"
+msgstr ""
+" size = sizeof(*p) * ((j + 1) * 150 + 110);\n"
+" printf(\"realloc: %zu\\en\", size);\n"
+" p = realloc(p, size);\n"
+" }\n"
+
+#. type: Plain text
+#: debian-bookworm opensuse-leap-15-6
+#, no-wrap
+msgid ""
+" free(p);\n"
+" exit(EXIT_SUCCESS);\n"
+"}\n"
+msgstr ""
+" free(p);\n"
+" exit(EXIT_SUCCESS);\n"
+"}\n"
+
+#. type: TH
+#: debian-unstable opensuse-tumbleweed
+#, no-wrap
+msgid "2023-05-03"
+msgstr "3. Mai 2023"
+
+#. type: TH
+#: debian-unstable opensuse-tumbleweed
+#, no-wrap
+msgid "Linux man-pages 6.05.01"
+msgstr "Linux man-pages 6.05.01"
+
+#. type: TH
+#: opensuse-leap-15-6
+#, no-wrap
+msgid "Linux man-pages 6.04"
+msgstr "Linux-Handbuchseiten 6.04"