grep-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

grep branch, master, updated. v2.25-23-g856e3f2


From: Jim Meyering
Subject: grep branch, master, updated. v2.25-23-g856e3f2
Date: Thu, 9 Jun 2016 16:42:02 +0000 (UTC)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "grep".

The branch, master has been updated
       via  856e3f2ee8c65ff49d67185ca124f6d674b2077b (commit)
       via  37e0f2a8af7fb5db26890fab7f9c9ad84e12c47c (commit)
       via  dcb30d3d8b0ef4c5ec97d7cb5f6cbdfe3f4cac03 (commit)
       via  945853c3387d9b7c87a84f1d02cb68760f44b816 (commit)
       via  6fd679315fbee367cfee643cfcc910b0ae4e7542 (commit)
       via  60b285496490172c358c0ee128df41ba890e06d9 (commit)
      from  2f56378c77591707d5c5d922f2ffb7442c894af8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=856e3f2ee8c65ff49d67185ca124f6d674b2077b


commit 856e3f2ee8c65ff49d67185ca124f6d674b2077b
Author: Zev Weiss <address@hidden>
Date:   Tue Jun 7 01:37:43 2016 -0500

    grep: do pagesize initialization and buffer allocation earlier
    
    * src/grep.c (reset, main): We're going to need pagesize and buffer
    initialized anyway, so we might as well do so unconditionally early on
    rather than checking on every call to reset().
    http://bugs.gnu.org/23717

diff --git a/src/grep.c b/src/grep.c
index d01bc4f..302e4d7 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -769,16 +769,6 @@ all_zeros (char const *buf, size_t size)
 static bool
 reset (int fd, struct stat const *st)
 {
-  if (! pagesize)
-    {
-      pagesize = getpagesize ();
-      if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
-        abort ();
-      bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize)
-                  + pagesize + sizeof (uword));
-      buffer = xmalloc (bufalloc);
-    }
-
   bufbeg = buflim = ALIGN_TO (buffer + 1, pagesize);
   bufbeg[-1] = eolbyte;
   bufdesc = fd;
@@ -2252,6 +2242,12 @@ main (int argc, char **argv)
   set_program_name (argv[0]);
   program_name = argv[0];
 
+  pagesize = getpagesize ();
+  if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
+    abort ();
+  bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize) + pagesize + sizeof 
(uword));
+  buffer = xmalloc (bufalloc);
+
   keys = NULL;
   keycc = 0;
   with_filenames = false;

http://git.savannah.gnu.org/cgit/grep.git/commit/?id=37e0f2a8af7fb5db26890fab7f9c9ad84e12c47c


commit 856e3f2ee8c65ff49d67185ca124f6d674b2077b
Author: Zev Weiss <address@hidden>
Date:   Tue Jun 7 01:37:43 2016 -0500

    grep: do pagesize initialization and buffer allocation earlier
    
    * src/grep.c (reset, main): We're going to need pagesize and buffer
    initialized anyway, so we might as well do so unconditionally early on
    rather than checking on every call to reset().
    http://bugs.gnu.org/23717

diff --git a/src/grep.c b/src/grep.c
index d01bc4f..302e4d7 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -769,16 +769,6 @@ all_zeros (char const *buf, size_t size)
 static bool
 reset (int fd, struct stat const *st)
 {
-  if (! pagesize)
-    {
-      pagesize = getpagesize ();
-      if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
-        abort ();
-      bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize)
-                  + pagesize + sizeof (uword));
-      buffer = xmalloc (bufalloc);
-    }
-
   bufbeg = buflim = ALIGN_TO (buffer + 1, pagesize);
   bufbeg[-1] = eolbyte;
   bufdesc = fd;
@@ -2252,6 +2242,12 @@ main (int argc, char **argv)
   set_program_name (argv[0]);
   program_name = argv[0];
 
+  pagesize = getpagesize ();
+  if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
+    abort ();
+  bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize) + pagesize + sizeof 
(uword));
+  buffer = xmalloc (bufalloc);
+
   keys = NULL;
   keycc = 0;
   with_filenames = false;

http://git.savannah.gnu.org/cgit/grep.git/commit/?id=dcb30d3d8b0ef4c5ec97d7cb5f6cbdfe3f4cac03


commit 856e3f2ee8c65ff49d67185ca124f6d674b2077b
Author: Zev Weiss <address@hidden>
Date:   Tue Jun 7 01:37:43 2016 -0500

    grep: do pagesize initialization and buffer allocation earlier
    
    * src/grep.c (reset, main): We're going to need pagesize and buffer
    initialized anyway, so we might as well do so unconditionally early on
    rather than checking on every call to reset().
    http://bugs.gnu.org/23717

diff --git a/src/grep.c b/src/grep.c
index d01bc4f..302e4d7 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -769,16 +769,6 @@ all_zeros (char const *buf, size_t size)
 static bool
 reset (int fd, struct stat const *st)
 {
-  if (! pagesize)
-    {
-      pagesize = getpagesize ();
-      if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
-        abort ();
-      bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize)
-                  + pagesize + sizeof (uword));
-      buffer = xmalloc (bufalloc);
-    }
-
   bufbeg = buflim = ALIGN_TO (buffer + 1, pagesize);
   bufbeg[-1] = eolbyte;
   bufdesc = fd;
@@ -2252,6 +2242,12 @@ main (int argc, char **argv)
   set_program_name (argv[0]);
   program_name = argv[0];
 
+  pagesize = getpagesize ();
+  if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
+    abort ();
+  bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize) + pagesize + sizeof 
(uword));
+  buffer = xmalloc (bufalloc);
+
   keys = NULL;
   keycc = 0;
   with_filenames = false;

http://git.savannah.gnu.org/cgit/grep.git/commit/?id=945853c3387d9b7c87a84f1d02cb68760f44b816


commit 856e3f2ee8c65ff49d67185ca124f6d674b2077b
Author: Zev Weiss <address@hidden>
Date:   Tue Jun 7 01:37:43 2016 -0500

    grep: do pagesize initialization and buffer allocation earlier
    
    * src/grep.c (reset, main): We're going to need pagesize and buffer
    initialized anyway, so we might as well do so unconditionally early on
    rather than checking on every call to reset().
    http://bugs.gnu.org/23717

diff --git a/src/grep.c b/src/grep.c
index d01bc4f..302e4d7 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -769,16 +769,6 @@ all_zeros (char const *buf, size_t size)
 static bool
 reset (int fd, struct stat const *st)
 {
-  if (! pagesize)
-    {
-      pagesize = getpagesize ();
-      if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
-        abort ();
-      bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize)
-                  + pagesize + sizeof (uword));
-      buffer = xmalloc (bufalloc);
-    }
-
   bufbeg = buflim = ALIGN_TO (buffer + 1, pagesize);
   bufbeg[-1] = eolbyte;
   bufdesc = fd;
@@ -2252,6 +2242,12 @@ main (int argc, char **argv)
   set_program_name (argv[0]);
   program_name = argv[0];
 
+  pagesize = getpagesize ();
+  if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
+    abort ();
+  bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize) + pagesize + sizeof 
(uword));
+  buffer = xmalloc (bufalloc);
+
   keys = NULL;
   keycc = 0;
   with_filenames = false;

http://git.savannah.gnu.org/cgit/grep.git/commit/?id=6fd679315fbee367cfee643cfcc910b0ae4e7542


commit 856e3f2ee8c65ff49d67185ca124f6d674b2077b
Author: Zev Weiss <address@hidden>
Date:   Tue Jun 7 01:37:43 2016 -0500

    grep: do pagesize initialization and buffer allocation earlier
    
    * src/grep.c (reset, main): We're going to need pagesize and buffer
    initialized anyway, so we might as well do so unconditionally early on
    rather than checking on every call to reset().
    http://bugs.gnu.org/23717

diff --git a/src/grep.c b/src/grep.c
index d01bc4f..302e4d7 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -769,16 +769,6 @@ all_zeros (char const *buf, size_t size)
 static bool
 reset (int fd, struct stat const *st)
 {
-  if (! pagesize)
-    {
-      pagesize = getpagesize ();
-      if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
-        abort ();
-      bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize)
-                  + pagesize + sizeof (uword));
-      buffer = xmalloc (bufalloc);
-    }
-
   bufbeg = buflim = ALIGN_TO (buffer + 1, pagesize);
   bufbeg[-1] = eolbyte;
   bufdesc = fd;
@@ -2252,6 +2242,12 @@ main (int argc, char **argv)
   set_program_name (argv[0]);
   program_name = argv[0];
 
+  pagesize = getpagesize ();
+  if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
+    abort ();
+  bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize) + pagesize + sizeof 
(uword));
+  buffer = xmalloc (bufalloc);
+
   keys = NULL;
   keycc = 0;
   with_filenames = false;

http://git.savannah.gnu.org/cgit/grep.git/commit/?id=60b285496490172c358c0ee128df41ba890e06d9


commit 856e3f2ee8c65ff49d67185ca124f6d674b2077b
Author: Zev Weiss <address@hidden>
Date:   Tue Jun 7 01:37:43 2016 -0500

    grep: do pagesize initialization and buffer allocation earlier
    
    * src/grep.c (reset, main): We're going to need pagesize and buffer
    initialized anyway, so we might as well do so unconditionally early on
    rather than checking on every call to reset().
    http://bugs.gnu.org/23717

diff --git a/src/grep.c b/src/grep.c
index d01bc4f..302e4d7 100644
--- a/src/grep.c
+++ b/src/grep.c
@@ -769,16 +769,6 @@ all_zeros (char const *buf, size_t size)
 static bool
 reset (int fd, struct stat const *st)
 {
-  if (! pagesize)
-    {
-      pagesize = getpagesize ();
-      if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
-        abort ();
-      bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize)
-                  + pagesize + sizeof (uword));
-      buffer = xmalloc (bufalloc);
-    }
-
   bufbeg = buflim = ALIGN_TO (buffer + 1, pagesize);
   bufbeg[-1] = eolbyte;
   bufdesc = fd;
@@ -2252,6 +2242,12 @@ main (int argc, char **argv)
   set_program_name (argv[0]);
   program_name = argv[0];
 
+  pagesize = getpagesize ();
+  if (pagesize == 0 || 2 * pagesize + 1 <= pagesize)
+    abort ();
+  bufalloc = (ALIGN_TO (INITIAL_BUFSIZE, pagesize) + pagesize + sizeof 
(uword));
+  buffer = xmalloc (bufalloc);
+
   keys = NULL;
   keycc = 0;
   with_filenames = false;

-----------------------------------------------------------------------

Summary of changes:
 src/dfa.c       |    2 +-
 src/dfasearch.c |    2 +-
 src/grep.c      |  105 ++++++++++++++++++++++++++-----------------------------
 3 files changed, 51 insertions(+), 58 deletions(-)


hooks/post-receive
-- 
grep



reply via email to

[Prev in Thread] Current Thread [Next in Thread]