OSDN Git Service

(split) LDP: Update original to LDP v3.38.
[linuxjm/LDP_man-pages.git] / original / Changes
1 ==================== Changes in man-pages-3.38 ====================
2
3 Released: 2012-03-25, Christchurch
4
5
6 Contributors
7 ------------
8
9 The following people contributed patches/fixes or (noted in brackets
10 in the changelog below) reports, notes, and ideas that have been
11 incorporated in changes in this release:
12
13 Akihiro MOTOKI <amotoki@gmail.com>
14 Artyom Pervukhin <artyom@evasive.ru>
15 Beňas Petr <xbenas00@stud.fit.vutbr.cz>
16 Ben Bacarisse <software@bsb.me.uk>
17 Bjarni Ingi Gislason <bjarniig@rhi.hi.is>
18 David Prévot <david@tilapin.org>
19 Denis Barbier <bouzim@gmail.com>
20 Denys Vlasenko <vda.linux@googlemail.com>
21 Eric Blake <ebb9@byu.net>
22 Iain Fraser <iainkfraser@gmail.com>
23 Justin T Pryzby <justinp@norchemlab.com>
24 Kirill Brilliantov <brilliantov@inbox.ru>
25 Mark R Bannister <mark@proseconsulting.co.uk>
26 Matthew Gregan <kinetik@flim.org>
27 Michael Kerrisk <mtk.manpages@gmail.com>
28 Nix <nix@esperi.org.uk>
29 Peter Schiffer <pschiffe@redhat.com>
30 Sergei Zhirikov <sfzhi@yahoo.com>
31
32 Apologies if I missed anyone!
33
34
35 New and rewritten pages
36 -----------------------
37
38 get_nprocs_conf.3
39     Beňas Petr
40         New page documenting get_nprocs_conf(3) and get_nprocs(3)
41     Michael Kerrisk
42         Some additions and improvements
43
44 malloc_get_state.3
45     Michael Kerrisk
46         New page documenting malloc_get_state(3) and malloc_set_state(3)
47
48 mallopt.3
49     Michael Kerrisk
50         New man page for mallopt(3)
51
52 mtrace.3
53     Michael Kerrisk
54         Complete rewrite of page, adding much more detail
55
56 scandirat.3
57     Mark R Bannister
58         New page for scandirat(3) (new in glibc 2.15)
59
60
61 Newly documented interfaces in existing pages
62 ---------------------------------------------
63
64 posix_memalign.3
65     Michael Kerrisk
66         Document aligned_alloc(3)
67             aligned_alloc() is new in C11.
68     Michael Kerrisk
69         Document pvalloc(3)
70
71 qsort.3
72     Mark R Bannister
73         Add documentation of qsort_r(3)
74     Ben Bacarisse
75         Improvements to Mark R Bannister's qsort_r() patch
76     Michael Kerrisk
77         Add VERSIONS section for qsort_r()
78
79
80 New and changed links
81 ---------------------
82
83 aligned_alloc.3
84     Michael Kerrisk
85         New link to posix_memalign.3
86
87 get_nprocs.3
88     Beňas Petr
89         Link to new get_nprocs_conf.3 page
90
91 malloc_set_state.3
92     Michael Kerrisk
93         Link to new malloc_get_state.3 page
94
95 pvalloc.3
96     Michael Kerrisk
97         New link to posix_memalign.3
98
99
100 Global changes
101 --------------
102
103 Various pages
104     Michael Kerrisk
105         Global formatting fix: balance .nf/.fi pairs
106
107 Various pages
108     Michael Kerrisk
109         Global fix: place sections in correct order
110
111 Various pages
112     Michael Kerrisk  [Justin T Pryzby]
113         Global fix: Remove duplicated words
114             Remove instances of duplicate words found using Justin's
115             grep-fu:
116
117                 for f in man?/*.[1-9]; do
118                     grep -HE ' ([[:alpha:]]{2,} +)\1' "$f" |
119                         grep -Evw '(proc|hugetlbfs|XXX*|root|long) *\1';
120                 done | grep -E --colo ' ([[:alpha:]]{2,} +)\1'
121
122 Various pages
123     Michael Kerrisk
124         Correct order of SEE ALSO entries
125
126
127 Changes to individual pages
128 ---------------------------
129
130 futimesat.2
131     Michael Kerrisk
132         PROTOTYPE: Correct header file and feature test macro requirements
133
134 keyctl.2
135     Bjarni Ingi Gislason
136         Strip trailing tabs from source line
137             See http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=664688
138
139 ptrace.2
140     Denys Vlasenko
141         Document PTRACE_GETEVENTMSG for PTRACE_EVENT_EXEC
142     Denys Vlasenko
143         Various fixes to recent updates of this page
144
145 symlinkat.2
146     Michael Kerrisk  [Eric Blake]
147         PROTOTYPE: Correct header file
148
149 syscalls.2
150     Michael Kerrisk
151         Remove unimplemented system calls from main syscall list
152             The unimplemented system calls are in any case noted lower down
153             in the page. Also: rearrange the text describing the unimplemented
154             system calls.
155     Michael Kerrisk
156         Note a few system calls that were removed in Linux 2.6
157     Michael Kerrisk
158         Add process_vm_readv(2) and process_vm_writev(2)
159
160 unlinkat.2
161     Michael Kerrisk  [Eric Blake]
162         PROTOTYPE: Correct header file
163     Michael Kerrisk
164         PROTOTYPE: Add <fcntl.h> for AT_* constants
165
166 utimensat.2
167     Michael Kerrisk
168         PROTOTYPE: Add <fcntl.h> for AT_* constants
169
170 copysign.3
171     Michael Kerrisk  [Tolga Dalman]
172         DESCRIPTION: Add a couple of examples
173
174 malloc.3
175     Michael Kerrisk
176         NOTES: Add a short discussion of arenas
177     Michael Kerrisk
178         Replace discussion of MALLOC_CHECK_ with pointer to mallopt(3)
179     Michael Kerrisk
180         SEE ALSO: Add mtrace(3)
181         SEE ALSO: add malloc_get_state(3)
182
183 posix_memalign.3
184     Michael Kerrisk
185         Rename memalign() argument
186             Rename "boundary" to "alignment" for consistency
187             with posix_memalign().
188     Michael Kerrisk
189         Improve discussion of feature test macros and header files for valloc(3)
190
191 rtnetlink.3
192     Kirill Brilliantov  [Sergei Zhirikov]
193         Fix example code, rta_len assignment should use RTA_LENGTH()
194             See also http://bugs.debian.org/655088
195
196 scandir.3
197     Mark R Bannister
198         SEE ALSO: Add scandirat(3)
199
200 sigqueue.3
201     Nix
202         Remove rt_sigqueueinfo from TH line
203             rt_sigqueueinfo() now has its own manual page, so should not
204             be listed in the .TH line of this page.
205
206 tzset.3
207     Peter Schiffer
208         Correct description for Julian 'n' date format
209             The Julian 'n' date format counts starting from 0, not 1.
210     Michael Kerrisk
211         Add some clarifying remarks to discussion of Julian day formats
212
213 packet.7
214     Michael Kerrisk  [Iain Fraser]
215         Fix comment on 'sll_hatype' field
216
217 tcp.7
218     Michael Kerrisk  [Artyom Pervukhin]
219         Correct RFC for TIME_WAIT assassination hazards