man-pages-2.51-malloc.patch

This commit is contained in:
Ivana Varekova 2007-05-30 14:18:29 +00:00
parent ace7c86be7
commit 202836be2c
8 changed files with 55 additions and 64 deletions

View File

@ -1,4 +1,4 @@
man-pages-extralocale.tar.bz2
man2.tar.gz
man2_sys2.1.tar.gz
man-pages-2.49.tar.bz2
man-pages-2.51.tar.bz2

View File

@ -1,11 +0,0 @@
--- man-pages-1.67/man2/io_submit.2.orig 2006-04-11 10:24:00.000000000 -0400
+++ man-pages-1.67/man2/io_submit.2 2006-04-11 10:24:01.000000000 -0400
@@ -27,7 +27,7 @@ io_submit \- Submit asynchronous I/O blo
.ad l
.hy 0
-#include <linux/aio.h>
+#include <libaio.h>
.sp
.HP 16
long\ \fBio_submit\fR\ (aio_context_t\ \fIctx_id\fR, long\ \fInr\fR, struct\ iocb\ \fI**iocbpp\fR);

View File

@ -1,22 +0,0 @@
--- man-pages-2.46/man2/io_submit.2.pom 2007-04-30 10:24:08.000000000 +0200
+++ man-pages-2.46/man2/io_submit.2 2007-04-30 11:02:41.000000000 +0200
@@ -27,7 +27,7 @@
.nf
.\" .ad l
.\" .hy 0
-.B #include <linux/aio.h>
+.B #include <libaio.h>
.sp
.\" .HP 16
.BI "int io_submit(aio_context_t " ctx_id ", long " nr \
--- man-pages-2.46/man8/nscd.8.pom 2007-04-30 10:24:21.000000000 +0200
+++ man-pages-2.46/man8/nscd.8 2007-04-30 10:57:49.000000000 +0200
@@ -47,6 +47,8 @@
Note that the shadow file is specifically not cached.
.BR getspnam (3)
calls remain uncached as a result.
+As a result of this behavior there is not possible to change non-nscd user
+to another non-nscd user via su service when nscd is running.
.SH OPTIONS
.TP
.B "\-\-help"

View File

@ -0,0 +1,11 @@
--- man-pages-2.51/man2/io_submit.2.pom 2007-05-29 15:43:08.000000000 +0200
+++ man-pages-2.51/man2/io_submit.2 2007-05-29 15:46:14.000000000 +0200
@@ -27,7 +27,7 @@
.nf
.\" .ad l
.\" .hy 0
-.B #include <linux/aio.h>
+.B #include <libaio.h>
.sp
.\" .HP 16
.BI "int io_submit(aio_context_t " ctx_id ", long " nr \

View File

@ -1,21 +1,21 @@
--- man-pages-2.48/man3/malloc.3.pom 2007-04-13 00:42:49.000000000 +0200
+++ man-pages-2.48/man3/malloc.3 2007-05-11 10:11:30.000000000 +0200
--- man-pages-2.51/man3/malloc.3.pom 2007-05-29 15:31:43.000000000 +0200
+++ man-pages-2.51/man3/malloc.3 2007-05-29 15:42:33.000000000 +0200
@@ -166,11 +166,14 @@
memory leaks can result.
If
.BR MALLOC_CHECK_
-is set to 0, any detected heap corruption is silently ignored;
-if set to 1, a diagnostic is printed on stderr;
+is set to 0, any detected heap corruption is silently ignored and
+an error message is not generated;
+if set to 1, the error message is printed on stderr, but the program
+is not aborted;
+is set to 0, any detected heap corruption is silently ignored and
+an error message is not generated;
+if set to 1, the error message is printed on stderr, but the program
+is not aborted;
if set to 2,
-.BR abort ()
-.BR abort (3)
-is called immediately.
+.BR abort()
+is called immediately, but the error message is not generated;
+if set to 3, the error message is printed on stderr and program is aborted.
+.BR abort()
+is called immediately, but the error message is not generated;
+if set to 3, the error message is printed on stderr and program is aborted.
This can be useful because otherwise
a crash may happen much later, and the true cause for the problem
is then very hard to track down.

View File

@ -1,5 +1,5 @@
--- man-pages-2.48/man2/tkill.2.pom 2007-04-13 00:42:49.000000000 +0200
+++ man-pages-2.48/man2/tkill.2 2007-05-11 10:25:00.000000000 +0200
--- man-pages-2.51/man2/tkill.2.pom 2007-05-29 15:49:18.000000000 +0200
+++ man-pages-2.51/man2/tkill.2 2007-05-29 16:05:31.000000000 +0200
@@ -25,7 +25,7 @@
.\"
.TH TKILL 2 "2004-05-31" "Linux 2.6.6" "Linux Programmer's Manual"
@ -19,31 +19,41 @@
-.B int tgkill(int tgid, int tid, int sig);
.fi
.SH DESCRIPTION
The \fBtkill\fP() system call is analogous to
@@ -54,12 +50,6 @@
With \fBtkill\fP(), however, one can address each process
The
@@ -59,19 +55,6 @@
however, one can address each process
by its unique TID.
.PP
-The \fBtgkill\fP() call improves on \fBtkill\fP() by allowing the caller to
-The
-.BR tgkill ()
-call improves on
-.BR tkill ()
-by allowing the caller to
-specify the thread group ID of the thread to be signalled, protecting
-against TID reuse.
-If the tgid is specified as \-1, \fBtgkill\fP() degenerates
-into \fBtkill\fP().
-If the tgid is specified as \-1,
-.BR tgkill ()
-degenerates
-into
-.BR tkill ().
-.PP
These are the raw system call interfaces, meant for internal
thread library use.
.SH "RETURN VALUE"
@@ -79,11 +69,11 @@
.B ESRCH
@@ -92,15 +75,11 @@
No process with the specified thread ID (and thread group ID) exists.
.SH "CONFORMING TO"
-\fBtkill\fP() and \fBtgkill\fP() are Linux specific and should not be used
+\fBtkill\fP() is Linux specific and should not be used
.BR tkill ()
-and
-.BR tgkill ()
-are Linux specific and should not be used
+is Linux specific and should not be used
in programs that are intended to be portable.
.SH VERSIONS
\fBtkill\fP() is supported since Linux 2.4.19 / 2.5.4.
-\fBtgkill\fP() was added in Linux 2.5.75.
.BR tkill ()
is supported since Linux 2.4.19 / 2.5.4.
-.BR tgkill ()
-was added in Linux 2.5.75.
.SH "SEE ALSO"
.BR gettid (2),
.BR kill (2)
+.BR tgkill (2)

View File

@ -1,6 +1,6 @@
Summary: Man (manual) pages from the Linux Documentation Project
Name: man-pages
Version: 2.49
Version: 2.51
Release: 1%{?dist}
License: distributable
Group: Documentation
@ -17,13 +17,13 @@ Source13: nss.5
Source14: man2_sys2.1.tar.gz
Patch1: man-pages-1.51-iconv.patch
Patch8: man-pages-2.48-fs.patch
Patch24: man-pages-2.48-malloc.patch
Patch24: man-pages-2.51-malloc.patch
Patch28: man-pages-2.46-nscd.patch
Patch30: man-pages-2.46-libaio-includes.patch
Patch30: man-pages-2.51-libaio-includes.patch
Patch36: man-pages-2.39-unimplemented.patch
Patch37: man-pages-2.48-mmap.patch
Patch38: man-pages-2.43-mount.patch
Patch39: man-pages-2.48-tgkill.patch
Patch39: man-pages-2.51-tgkill.patch
Patch40: man-pages-2.39-mmap2.patch
Patch41: man-pages-2.43-rt_spm.patch
Patch42: man-pages-2.43-swapon.patch
@ -212,6 +212,9 @@ rm -rf $RPM_BUILD_ROOT
%lang(en) %{_mandir}/en/man*
%changelog
* Wed May 30 2007 Ivana Varekova <varekova@redhat.com> 2.51-1
- update to 2.51
* Mon May 21 2007 Ivana Varekova <varekova@redhat.com> 2.49-1
- update to 2.49

View File

@ -1,4 +1,4 @@
57f2e0500d177e05647990eae439a8ee man-pages-extralocale.tar.bz2
af09d031dcee66929510e078d00066f2 man2.tar.gz
fbc03fdbc665e24961d30dad3ed8596d man2_sys2.1.tar.gz
6e6e7c699dec0e7305157c8a8807d5f6 man-pages-2.49.tar.bz2
b20a1252aa4edb300d6f3b75b2c3428c man-pages-2.51.tar.bz2