Fix build warnings in nptl/tst-eintr1.c

Message ID 3f551a0b-1c2b-d215-878a-4259789fc58e@linux.ibm.com
State Committed
Headers

Commit Message

Stefan Liebler June 25, 2019, 1:15 p.m. UTC
  Hi,

this patch fixes the gcc warnings seen with gcc 9.1 -O3 on s390x:
tst-eintr1.c: In function ‘tf1’:
tst-eintr1.c:46:1: error: no return statement in function returning 
non-void [-Werror=return-type]
     46 | }
        | ^
tst-eintr1.c: In function ‘do_test’:
tst-eintr1.c:57:17: error: unused variable ‘th’ [-Werror=unused-variable]
     57 |       pthread_t th = xpthread_create (NULL, tf1, NULL);
        |                 ^~

Bye
Stefan

ChangeLog:

	* nptl/tst-eintr1.c (tf1): Add return statement.
	(do_test): Remove unused th variable.
  

Comments

Florian Weimer June 25, 2019, 1:19 p.m. UTC | #1
* Stefan Liebler:

> diff --git a/nptl/tst-eintr1.c b/nptl/tst-eintr1.c
> index b60b796d61..256f5e94f8 100644
> --- a/nptl/tst-eintr1.c
> +++ b/nptl/tst-eintr1.c
> @@ -43,6 +43,7 @@ tf1 (void *arg)
>        pthread_t th = xpthread_create (NULL, tf2, NULL);
>        xpthread_join (th);
>      }
> +  return NULL;
>  }
>  
>  
> @@ -54,7 +55,7 @@ do_test (void)
>    int i;
>    for (i = 0; i < 10; ++i)
>      {
> -      pthread_t th = xpthread_create (NULL, tf1, NULL);
> +      xpthread_create (NULL, tf1, NULL);
>      }

Looks good.  But you could remove the braces from the for loop, too.

Thanks,
Florian
  
Stefan Liebler June 25, 2019, 1:33 p.m. UTC | #2
On 6/25/19 3:19 PM, Florian Weimer wrote:
> * Stefan Liebler:
> 
>> diff --git a/nptl/tst-eintr1.c b/nptl/tst-eintr1.c
>> index b60b796d61..256f5e94f8 100644
>> --- a/nptl/tst-eintr1.c
>> +++ b/nptl/tst-eintr1.c
>> @@ -43,6 +43,7 @@ tf1 (void *arg)
>>         pthread_t th = xpthread_create (NULL, tf2, NULL);
>>         xpthread_join (th);
>>       }
>> +  return NULL;
>>   }
>>   
>>   
>> @@ -54,7 +55,7 @@ do_test (void)
>>     int i;
>>     for (i = 0; i < 10; ++i)
>>       {
>> -      pthread_t th = xpthread_create (NULL, tf1, NULL);
>> +      xpthread_create (NULL, tf1, NULL);
>>       }
> 
> Looks good.  But you could remove the braces from the for loop, too.
Okay. That's no problem. If no one opposes, I'll commit the patch 
tomorrow without the braces.
> 
> Thanks,
> Florian
>
  
Stefan Liebler June 26, 2019, 10:32 a.m. UTC | #3
On 6/25/19 3:33 PM, Stefan Liebler wrote:
> On 6/25/19 3:19 PM, Florian Weimer wrote:
>> * Stefan Liebler:
>>
>>> diff --git a/nptl/tst-eintr1.c b/nptl/tst-eintr1.c
>>> index b60b796d61..256f5e94f8 100644
>>> --- a/nptl/tst-eintr1.c
>>> +++ b/nptl/tst-eintr1.c
>>> @@ -43,6 +43,7 @@ tf1 (void *arg)
>>>         pthread_t th = xpthread_create (NULL, tf2, NULL);
>>>         xpthread_join (th);
>>>       }
>>> +  return NULL;
>>>   }
>>> @@ -54,7 +55,7 @@ do_test (void)
>>>     int i;
>>>     for (i = 0; i < 10; ++i)
>>>       {
>>> -      pthread_t th = xpthread_create (NULL, tf1, NULL);
>>> +      xpthread_create (NULL, tf1, NULL);
>>>       }
>>
>> Looks good.  But you could remove the braces from the for loop, too.
> Okay. That's no problem. If no one opposes, I'll commit the patch 
> tomorrow without the braces.
>>
>> Thanks,
>> Florian
>>
> 
Committed.

Thanks.
  

Patch

commit 2d77bc90e2d16f88eb242c3daf2778b009a9234e
Author: Stefan Liebler <stli@linux.ibm.com>
Date:   Mon Jun 24 12:11:48 2019 +0200

    Fix build warnings in nptl/tst-eintr1.c
    
    This patch fixes the gcc warnings seen with gcc 9.1 -O3 on s390x:
    tst-eintr1.c: In function ‘tf1’:
    tst-eintr1.c:46:1: error: no return statement in function returning non-void [-Werror=return-type]
       46 | }
          | ^
    tst-eintr1.c: In function ‘do_test’:
    tst-eintr1.c:57:17: error: unused variable ‘th’ [-Werror=unused-variable]
       57 |       pthread_t th = xpthread_create (NULL, tf1, NULL);
          |                 ^~
    
    ChangeLog:
    
            * nptl/tst-eintr1.c (tf1): Add return statement.
            (do_test): Remove unused th variable.

diff --git a/nptl/tst-eintr1.c b/nptl/tst-eintr1.c
index b60b796d61..256f5e94f8 100644
--- a/nptl/tst-eintr1.c
+++ b/nptl/tst-eintr1.c
@@ -43,6 +43,7 @@  tf1 (void *arg)
       pthread_t th = xpthread_create (NULL, tf2, NULL);
       xpthread_join (th);
     }
+  return NULL;
 }
 
 
@@ -54,7 +55,7 @@  do_test (void)
   int i;
   for (i = 0; i < 10; ++i)
     {
-      pthread_t th = xpthread_create (NULL, tf1, NULL);
+      xpthread_create (NULL, tf1, NULL);
     }
 
   delayed_exit (3);