Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Geisert <mark@maxrnd.com>2022-04-22 08:36:33 +0300
committerCorinna Vinschen <corinna@vinschen.de>2022-04-27 12:40:09 +0300
commit23a3ec33928b780981626721c93a4f1fcb92bf02 (patch)
tree333b84b3d28b14bb2a9b5be1dad161ce3ac844c9 /winsup/doc
parent0a67adb0f518b1590bd94cdf98bed60888156bed (diff)
Cygwin: Fix "0x0x" in gmondump and ssp man pages
A recent patch fixed gmondump to stop printing "0x0x" as an address prefix. It turns out the Cygwin User's Guide and the gmondump and ssp man pages (all from utils.xml) have examples of the same error.
Diffstat (limited to 'winsup/doc')
-rw-r--r--winsup/doc/utils.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/doc/utils.xml b/winsup/doc/utils.xml
index 0b9e38549..895988037 100644
--- a/winsup/doc/utils.xml
+++ b/winsup/doc/utils.xml
@@ -846,7 +846,7 @@ line separates the ACLs for each file.
<screen>
$ gmondump gmon.out.21900.zstd.exe
file gmon.out.21900.zstd.exe, gmon version 0x51879, sample rate 100
- address range 0x0x100401000..0x0x1004cc668
+ address range 0x100401000..0x1004cc668
numbuckets 208282, hitbuckets 1199, hitcount 12124, numrawarcs 0
</screen>
</refsect1>
@@ -2951,7 +2951,7 @@ Idx Name Size VMA LMA File off Algn
section and the VMA of the section after it (sections are usually
contiguous; you can also add the Size to the VMA to get the end address).
In this case, the VMA is 0x61001000 and the ending address is either
- 0x61080000 (start of .data method) or 0x0x6107fa00 (VMA+Size method). </para>
+ 0x61080000 (start of .data method) or 0x6107fa00 (VMA+Size method). </para>
<para> There are two basic ways to use SSP - either profiling a whole
program, or selectively profiling parts of the program. </para>