All of lore.kernel.org
 help / color / mirror / Atom feed
* Function sigvec removed in glibc 2.21
@ 2015-02-19 17:19 Carlos O'Donell
       [not found] ` <54E61B2D.3030402-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Carlos O'Donell @ 2015-02-19 17:19 UTC (permalink / raw)
  To: Michael Kerrisk, linux-man-u79uwXL29TY76Z2rM5mHXA; +Cc: Roland McGrath

Michael,

We should update man3/sigvec.3 to indicate it can no longer be used
on Linux with glibc 2.21. The sigvec function was removed in glibc 2.21.

https://sourceware.org/glibc/wiki/Release/2.21#Packaging_Changes

Cheers,
Carlos.
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Function sigvec removed in glibc 2.21
       [not found] ` <54E61B2D.3030402-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
@ 2015-02-19 18:18   ` Michael Kerrisk (man-pages)
       [not found]     ` <CAKgNAkhRrUA7EEvx3rJ1D5b=13i+_cC+EstryVgZwE_3iS_XjA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-02-19 18:18 UTC (permalink / raw)
  To: Carlos O'Donell; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, Roland McGrath

Hi Carlos,

On 19 February 2015 at 18:19, Carlos O'Donell <carlos-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> wrote:
> Michael,
>
> We should update man3/sigvec.3 to indicate it can no longer be used
> on Linux with glibc 2.21. The sigvec function was removed in glibc 2.21.
>
> https://sourceware.org/glibc/wiki/Release/2.21#Packaging_Changes

Thanks for the heads-up. I already committed the following a while back:
http://git.kernel.org/cgit/docs/man-pages/man-pages.git/commit/man3/sigvec.3?id=5587b44c90ca19abf75e96c3e85371366b72e4da

Okay?

Cheers,

Michael

diff --git a/man3/sigvec.3 b/man3/sigvec.3
index 797d43d..2ccd8e7 100644
--- a/man3/sigvec.3
+++ b/man3/sigvec.3
@@ -231,6 +231,13 @@ functions are thread-safe.
The
.BR sigmask ()
macro is thread-safe.
+.SH VERSIONS
+Starting with version 2.21, the GNU C library no longer exports the
+.BR sigvec ()
+function as part of the ABI.
+(To ensure backward compatibility,
+the glibc symbol versioning scheme continues to export the interface
+to binaries linked against older versions of the library.)
.SH CONFORMING TO
All of these functions were in
4.3BSD, except


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: Function sigvec removed in glibc 2.21
       [not found]     ` <CAKgNAkhRrUA7EEvx3rJ1D5b=13i+_cC+EstryVgZwE_3iS_XjA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2015-02-19 18:40       ` Carlos O'Donell
  0 siblings, 0 replies; 3+ messages in thread
From: Carlos O'Donell @ 2015-02-19 18:40 UTC (permalink / raw)
  To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
  Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, Roland McGrath

On 02/19/2015 01:18 PM, Michael Kerrisk (man-pages) wrote:
> Hi Carlos,
> 
> On 19 February 2015 at 18:19, Carlos O'Donell <carlos-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> wrote:
>> Michael,
>>
>> We should update man3/sigvec.3 to indicate it can no longer be used
>> on Linux with glibc 2.21. The sigvec function was removed in glibc 2.21.
>>
>> https://sourceware.org/glibc/wiki/Release/2.21#Packaging_Changes
> 
> Thanks for the heads-up. I already committed the following a while back:
> http://git.kernel.org/cgit/docs/man-pages/man-pages.git/commit/man3/sigvec.3?id=5587b44c90ca19abf75e96c3e85371366b72e4da
> 
> Okay?

Perfect.

> Cheers,
> 
> Michael
> 
> diff --git a/man3/sigvec.3 b/man3/sigvec.3
> index 797d43d..2ccd8e7 100644
> --- a/man3/sigvec.3
> +++ b/man3/sigvec.3
> @@ -231,6 +231,13 @@ functions are thread-safe.
> The
> .BR sigmask ()
> macro is thread-safe.
> +.SH VERSIONS
> +Starting with version 2.21, the GNU C library no longer exports the
> +.BR sigvec ()
> +function as part of the ABI.
> +(To ensure backward compatibility,
> +the glibc symbol versioning scheme continues to export the interface
> +to binaries linked against older versions of the library.)
> .SH CONFORMING TO
> All of these functions were in
> 4.3BSD, except
> 
> 

--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-02-19 18:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-19 17:19 Function sigvec removed in glibc 2.21 Carlos O'Donell
     [not found] ` <54E61B2D.3030402-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-02-19 18:18   ` Michael Kerrisk (man-pages)
     [not found]     ` <CAKgNAkhRrUA7EEvx3rJ1D5b=13i+_cC+EstryVgZwE_3iS_XjA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-02-19 18:40       ` Carlos O'Donell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.