public inbox for cygwin-patches@cygwin.com
 help / color / mirror / Atom feed
* [PATCH] cygwin: export rpmatch(3)
@ 2015-11-17 18:29 Yaakov Selkowitz
  2015-11-18  9:44 ` Corinna Vinschen
  0 siblings, 1 reply; 2+ messages in thread
From: Yaakov Selkowitz @ 2015-11-17 18:29 UTC (permalink / raw)
  To: cygwin-patches

winsup/cygwin/
* common.din (rpmatch): Export.
* include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.

winsup/doc/
* new-features.xml (ov-new2.4): New section. Document rpmatch.
* posix.xml (std-bsd): Add rpmatch.

Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
---
This depends on the newlib patch sent to their list.

 winsup/cygwin/ChangeLog                |  5 +++++
 winsup/cygwin/common.din               |  1 +
 winsup/cygwin/include/cygwin/version.h |  3 ++-
 winsup/doc/ChangeLog                   |  5 +++++
 winsup/doc/new-features.xml            | 12 ++++++++++++
 winsup/doc/posix.xml                   |  1 +
 6 files changed, 26 insertions(+), 1 deletion(-)

diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index bdaab40..1bab25c 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2015-11-17  Yaakov Selkowitz  <yselkowi@redhat.com>
+
+	* common.din (rpmatch): Export.
+	* include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
+
 2015-11-12  Corinna Vinschen  <corinna@vinschen.de>
 
 	* flock.cc (lockf_t::create_lock_obj): Correctly recreate lock object
diff --git a/winsup/cygwin/common.din b/winsup/cygwin/common.din
index 5d22e97..0b0e196 100644
--- a/winsup/cygwin/common.din
+++ b/winsup/cygwin/common.din
@@ -1017,6 +1017,7 @@ rindex NOSIGFE
 rmdir SIGFE
 round NOSIGFE
 roundf NOSIGFE
+rpmatch SIGFE
 rresvport = cygwin_rresvport SIGFE
 rresvport_af = cygwin_rresvport_af SIGFE
 ruserok SIGFE
diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h
index af5afd5..2edd7d7 100644
--- a/winsup/cygwin/include/cygwin/version.h
+++ b/winsup/cygwin/include/cygwin/version.h
@@ -473,13 +473,14 @@ details. */
       289: Export sigsetjmp, siglongjmp.
       290: Add sysconf cache handling.
       291: Export aligned_alloc, at_quick_exit, quick_exit.
+      292: Export rpmatch.
      */
 
      /* Note that we forgot to bump the api for ualarm, strtoll, strtoull,
 	sigaltstack, sethostname. */
 
 #define CYGWIN_VERSION_API_MAJOR 0
-#define CYGWIN_VERSION_API_MINOR 291
+#define CYGWIN_VERSION_API_MINOR 292
 
      /* There is also a compatibity version number associated with the
 	shared memory regions.  It is incremented when incompatible
diff --git a/winsup/doc/ChangeLog b/winsup/doc/ChangeLog
index 14dd387..df8c641 100644
--- a/winsup/doc/ChangeLog
+++ b/winsup/doc/ChangeLog
@@ -1,3 +1,8 @@
+2015-11-17  Yaakov Selkowitz  <yselkowi@redhat.com>
+
+	* new-features.xml (ov-new2.4): New section. Document rpmatch.
+	* posix.xml (std-bsd): Add rpmatch.
+
 2015-11-02  Corinna Vinschen  <corinna@vinschen.de>
 
 	* new-features.xml (ov-new2.3): Document Parallels Desktop FS support.
diff --git a/winsup/doc/new-features.xml b/winsup/doc/new-features.xml
index 88eb25c..e054a8e 100644
--- a/winsup/doc/new-features.xml
+++ b/winsup/doc/new-features.xml
@@ -4,6 +4,18 @@
 
 <sect1 id="ov-new"><title>What's new and what changed in Cygwin</title>
 
+<sect2 id="ov-new2.4"><title>What's new and what changed in 2.4</title>
+
+<itemizedlist mark="bullet">
+
+<listitem><para>
+New API: rpmatch.
+</para></listitem>
+
+</itemizedlist>
+
+</sect2>
+
 <sect2 id="ov-new2.3"><title>What's new and what changed in 2.3</title>
 
 <itemizedlist mark="bullet">
diff --git a/winsup/doc/posix.xml b/winsup/doc/posix.xml
index dc6c148..7b6efba 100644
--- a/winsup/doc/posix.xml
+++ b/winsup/doc/posix.xml
@@ -1086,6 +1086,7 @@ also IEEE Std 1003.1-2008 (POSIX.1-2008).</para>
     res_send
     revoke
     rexec
+    rpmatch
     rresvport
     rresvport_af
     ruserok
-- 
2.5.3

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

* Re: [PATCH] cygwin: export rpmatch(3)
  2015-11-17 18:29 [PATCH] cygwin: export rpmatch(3) Yaakov Selkowitz
@ 2015-11-18  9:44 ` Corinna Vinschen
  0 siblings, 0 replies; 2+ messages in thread
From: Corinna Vinschen @ 2015-11-18  9:44 UTC (permalink / raw)
  To: cygwin-patches

[-- Attachment #1: Type: text/plain, Size: 964 bytes --]

On Nov 17 12:28, Yaakov Selkowitz wrote:
> winsup/cygwin/
> * common.din (rpmatch): Export.
> * include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
> 
> winsup/doc/
> * new-features.xml (ov-new2.4): New section. Document rpmatch.
> * posix.xml (std-bsd): Add rpmatch.
> 
> Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
> ---
> This depends on the newlib patch sent to their list.
> 
>  winsup/cygwin/ChangeLog                |  5 +++++
>  winsup/cygwin/common.din               |  1 +
>  winsup/cygwin/include/cygwin/version.h |  3 ++-
>  winsup/doc/ChangeLog                   |  5 +++++
>  winsup/doc/new-features.xml            | 12 ++++++++++++
>  winsup/doc/posix.xml                   |  1 +
>  6 files changed, 26 insertions(+), 1 deletion(-)

ACK, thanks.


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat

[-- Attachment #2: Type: application/pgp-signature, Size: 819 bytes --]

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

end of thread, other threads:[~2015-11-18  9:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-17 18:29 [PATCH] cygwin: export rpmatch(3) Yaakov Selkowitz
2015-11-18  9:44 ` Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).