public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/azanella/clang] Use __feof_unlocked instead of feof_unlocked
@ 2022-06-09 21:25 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-06-09 21:25 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=d0da469fd4c5be477deb3aa6050d9b366f702178

commit d0da469fd4c5be477deb3aa6050d9b366f702178
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:32:51 2022 -0300

    Use __feof_unlocked instead of feof_unlocked

Diff:
---
 inet/ruserpass.c          | 2 +-
 nptl/pthread_getattr_np.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index 42ebe94e03..1a5c5a9604 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
+	if (__feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))
diff --git a/nptl/pthread_getattr_np.c b/nptl/pthread_getattr_np.c
index 9c5b73b452..6fd2d1be51 100644
--- a/nptl/pthread_getattr_np.c
+++ b/nptl/pthread_getattr_np.c
@@ -117,7 +117,7 @@ __pthread_getattr_np (pthread_t thread_id, pthread_attr_t *attr)
 	      uintptr_t last_to = 0;
 #endif
 
-	      while (! feof_unlocked (fp))
+	      while (! __feof_unlocked (fp))
 		{
 		  if (__getline (&line, &linelen, fp) <= 0)
 		    break;


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

* [glibc/azanella/clang] Use __feof_unlocked instead of feof_unlocked
@ 2022-06-09 13:21 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-06-09 13:21 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=d0da469fd4c5be477deb3aa6050d9b366f702178

commit d0da469fd4c5be477deb3aa6050d9b366f702178
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:32:51 2022 -0300

    Use __feof_unlocked instead of feof_unlocked

Diff:
---
 inet/ruserpass.c          | 2 +-
 nptl/pthread_getattr_np.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index 42ebe94e03..1a5c5a9604 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
+	if (__feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))
diff --git a/nptl/pthread_getattr_np.c b/nptl/pthread_getattr_np.c
index 9c5b73b452..6fd2d1be51 100644
--- a/nptl/pthread_getattr_np.c
+++ b/nptl/pthread_getattr_np.c
@@ -117,7 +117,7 @@ __pthread_getattr_np (pthread_t thread_id, pthread_attr_t *attr)
 	      uintptr_t last_to = 0;
 #endif
 
-	      while (! feof_unlocked (fp))
+	      while (! __feof_unlocked (fp))
 		{
 		  if (__getline (&line, &linelen, fp) <= 0)
 		    break;


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

* [glibc/azanella/clang] Use __feof_unlocked instead of feof_unlocked
@ 2022-06-03 14:11 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-06-03 14:11 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=2d897b90b98e39e0071124dcfd2c0bcf4faf0a98

commit 2d897b90b98e39e0071124dcfd2c0bcf4faf0a98
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:32:51 2022 -0300

    Use __feof_unlocked instead of feof_unlocked

Diff:
---
 inet/ruserpass.c          | 2 +-
 nptl/pthread_getattr_np.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index 42ebe94e03..1a5c5a9604 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
+	if (__feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))
diff --git a/nptl/pthread_getattr_np.c b/nptl/pthread_getattr_np.c
index 9c5b73b452..6fd2d1be51 100644
--- a/nptl/pthread_getattr_np.c
+++ b/nptl/pthread_getattr_np.c
@@ -117,7 +117,7 @@ __pthread_getattr_np (pthread_t thread_id, pthread_attr_t *attr)
 	      uintptr_t last_to = 0;
 #endif
 
-	      while (! feof_unlocked (fp))
+	      while (! __feof_unlocked (fp))
 		{
 		  if (__getline (&line, &linelen, fp) <= 0)
 		    break;


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

* [glibc/azanella/clang] Use __feof_unlocked instead of feof_unlocked
@ 2022-05-13 14:25 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-05-13 14:25 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ed9594101f139426db275c4a2a047632faaf3c72

commit ed9594101f139426db275c4a2a047632faaf3c72
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:32:51 2022 -0300

    Use __feof_unlocked instead of feof_unlocked

Diff:
---
 inet/ruserpass.c          | 2 +-
 nptl/pthread_getattr_np.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index f6f212ec9f..3e46f9bbaa 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
+	if (__feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))
diff --git a/nptl/pthread_getattr_np.c b/nptl/pthread_getattr_np.c
index 9c5b73b452..6fd2d1be51 100644
--- a/nptl/pthread_getattr_np.c
+++ b/nptl/pthread_getattr_np.c
@@ -117,7 +117,7 @@ __pthread_getattr_np (pthread_t thread_id, pthread_attr_t *attr)
 	      uintptr_t last_to = 0;
 #endif
 
-	      while (! feof_unlocked (fp))
+	      while (! __feof_unlocked (fp))
 		{
 		  if (__getline (&line, &linelen, fp) <= 0)
 		    break;


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

* [glibc/azanella/clang] Use __feof_unlocked instead of feof_unlocked
@ 2022-05-12 19:38 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-05-12 19:38 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=ff09b33083975051d9f1793a32974e4322a058d5

commit ff09b33083975051d9f1793a32974e4322a058d5
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:32:51 2022 -0300

    Use __feof_unlocked instead of feof_unlocked

Diff:
---
 inet/ruserpass.c          | 2 +-
 nptl/pthread_getattr_np.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index f6f212ec9f..3e46f9bbaa 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
+	if (__feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))
diff --git a/nptl/pthread_getattr_np.c b/nptl/pthread_getattr_np.c
index 9c5b73b452..6fd2d1be51 100644
--- a/nptl/pthread_getattr_np.c
+++ b/nptl/pthread_getattr_np.c
@@ -117,7 +117,7 @@ __pthread_getattr_np (pthread_t thread_id, pthread_attr_t *attr)
 	      uintptr_t last_to = 0;
 #endif
 
-	      while (! feof_unlocked (fp))
+	      while (! __feof_unlocked (fp))
 		{
 		  if (__getline (&line, &linelen, fp) <= 0)
 		    break;


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

* [glibc/azanella/clang] Use __feof_unlocked instead of feof_unlocked
@ 2022-05-10 18:29 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-05-10 18:29 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=8ccf7c9bcae3625a2bd73b8a7a7c61188612d7c5

commit 8ccf7c9bcae3625a2bd73b8a7a7c61188612d7c5
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:32:51 2022 -0300

    Use __feof_unlocked instead of feof_unlocked

Diff:
---
 inet/ruserpass.c          | 2 +-
 nptl/pthread_getattr_np.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index f6f212ec9f..3e46f9bbaa 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
+	if (__feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))
diff --git a/nptl/pthread_getattr_np.c b/nptl/pthread_getattr_np.c
index 9c5b73b452..6fd2d1be51 100644
--- a/nptl/pthread_getattr_np.c
+++ b/nptl/pthread_getattr_np.c
@@ -117,7 +117,7 @@ __pthread_getattr_np (pthread_t thread_id, pthread_attr_t *attr)
 	      uintptr_t last_to = 0;
 #endif
 
-	      while (! feof_unlocked (fp))
+	      while (! __feof_unlocked (fp))
 		{
 		  if (__getline (&line, &linelen, fp) <= 0)
 		    break;


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

* [glibc/azanella/clang] Use __feof_unlocked instead of feof_unlocked
@ 2022-04-29 14:09 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-04-29 14:09 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=8f7e8a1de8cf73235892c123dff605041831e394

commit 8f7e8a1de8cf73235892c123dff605041831e394
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:32:51 2022 -0300

    Use __feof_unlocked instead of feof_unlocked

Diff:
---
 inet/ruserpass.c          | 2 +-
 nptl/pthread_getattr_np.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index f6f212ec9f..3e46f9bbaa 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
+	if (__feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))
diff --git a/nptl/pthread_getattr_np.c b/nptl/pthread_getattr_np.c
index 9c5b73b452..6fd2d1be51 100644
--- a/nptl/pthread_getattr_np.c
+++ b/nptl/pthread_getattr_np.c
@@ -117,7 +117,7 @@ __pthread_getattr_np (pthread_t thread_id, pthread_attr_t *attr)
 	      uintptr_t last_to = 0;
 #endif
 
-	      while (! feof_unlocked (fp))
+	      while (! __feof_unlocked (fp))
 		{
 		  if (__getline (&line, &linelen, fp) <= 0)
 		    break;


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

* [glibc/azanella/clang] Use __feof_unlocked instead of feof_unlocked
@ 2022-04-04 12:59 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-04-04 12:59 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6d4d5add1dfe8c24b160cbfb094e620bcb24c13f

commit 6d4d5add1dfe8c24b160cbfb094e620bcb24c13f
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:32:51 2022 -0300

    Use __feof_unlocked instead of feof_unlocked

Diff:
---
 inet/ruserpass.c          | 2 +-
 nptl/pthread_getattr_np.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index f6f212ec9f..3e46f9bbaa 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
+	if (__feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))
diff --git a/nptl/pthread_getattr_np.c b/nptl/pthread_getattr_np.c
index 9c5b73b452..6fd2d1be51 100644
--- a/nptl/pthread_getattr_np.c
+++ b/nptl/pthread_getattr_np.c
@@ -117,7 +117,7 @@ __pthread_getattr_np (pthread_t thread_id, pthread_attr_t *attr)
 	      uintptr_t last_to = 0;
 #endif
 
-	      while (! feof_unlocked (fp))
+	      while (! __feof_unlocked (fp))
 		{
 		  if (__getline (&line, &linelen, fp) <= 0)
 		    break;


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

* [glibc/azanella/clang] Use __feof_unlocked instead of feof_unlocked
@ 2022-03-31 19:11 Adhemerval Zanella
  0 siblings, 0 replies; 9+ messages in thread
From: Adhemerval Zanella @ 2022-03-31 19:11 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=cf6404a7e954d090b17cb258b022eca994e66999

commit cf6404a7e954d090b17cb258b022eca994e66999
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date:   Thu Mar 31 14:32:51 2022 -0300

    Use __feof_unlocked instead of feof_unlocked

Diff:
---
 inet/ruserpass.c          | 2 +-
 nptl/pthread_getattr_np.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/inet/ruserpass.c b/inet/ruserpass.c
index f6f212ec9f..3e46f9bbaa 100644
--- a/inet/ruserpass.c
+++ b/inet/ruserpass.c
@@ -217,7 +217,7 @@ token (void)
 	int c;
 	int i;
 
-	if (feof_unlocked(cfile) || __ferror_unlocked(cfile))
+	if (__feof_unlocked(cfile) || __ferror_unlocked(cfile))
 		return (0);
 	while ((c = __getc_unlocked(cfile)) != EOF &&
 	    (c == '\n' || c == '\t' || c == ' ' || c == ','))
diff --git a/nptl/pthread_getattr_np.c b/nptl/pthread_getattr_np.c
index 9c5b73b452..6fd2d1be51 100644
--- a/nptl/pthread_getattr_np.c
+++ b/nptl/pthread_getattr_np.c
@@ -117,7 +117,7 @@ __pthread_getattr_np (pthread_t thread_id, pthread_attr_t *attr)
 	      uintptr_t last_to = 0;
 #endif
 
-	      while (! feof_unlocked (fp))
+	      while (! __feof_unlocked (fp))
 		{
 		  if (__getline (&line, &linelen, fp) <= 0)
 		    break;


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

end of thread, other threads:[~2022-06-09 21:25 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-09 21:25 [glibc/azanella/clang] Use __feof_unlocked instead of feof_unlocked Adhemerval Zanella
  -- strict thread matches above, loose matches on Subject: below --
2022-06-09 13:21 Adhemerval Zanella
2022-06-03 14:11 Adhemerval Zanella
2022-05-13 14:25 Adhemerval Zanella
2022-05-12 19:38 Adhemerval Zanella
2022-05-10 18:29 Adhemerval Zanella
2022-04-29 14:09 Adhemerval Zanella
2022-04-04 12:59 Adhemerval Zanella
2022-03-31 19:11 Adhemerval Zanella

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).