diff options
author | Rohr, Stephan <stephan.rohr@intel.com> | 2024-01-31 06:33:37 -0800 |
---|---|---|
committer | Stephan Rohr <stephan.rohr@intel.com> | 2024-12-02 00:24:19 -0800 |
commit | b574b26ac79171fc225e0d96de47ceb6f82430f2 (patch) | |
tree | 53eaf0db6ce37c3703ad39683bed8f96942b2f4a | |
parent | 69a91bcd6eb72ccf5144bbcdee624c481066e5b3 (diff) | |
download | binutils-b574b26ac79171fc225e0d96de47ceb6f82430f2.zip binutils-b574b26ac79171fc225e0d96de47ceb6f82430f2.tar.gz binutils-b574b26ac79171fc225e0d96de47ceb6f82430f2.tar.bz2 |
testsuite, threads: add missing return statements
Add missing return statements in
* gdb.threads/process-exit-status-is-leader-exit-status.c
* gdb.threads/next-fork-exec-other-thread.c
to fix 'no return statement' compiler warnings, e.g.:
process-exit-status-is-leader-exit-status.c: In function ‘start’:
process-exit-status-is-leader-exit-status.c:46:1: warning: no return
statement in function returning non-void [-Wreturn-type]
46 | }
| ^
Approved-By: Simon Marchi <simon.marchi@efficios.com>
-rw-r--r-- | gdb/testsuite/gdb.threads/next-fork-exec-other-thread.c | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.threads/process-exit-status-is-leader-exit-status.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.threads/next-fork-exec-other-thread.c b/gdb/testsuite/gdb.threads/next-fork-exec-other-thread.c index 0645b55..7694a89 100644 --- a/gdb/testsuite/gdb.threads/next-fork-exec-other-thread.c +++ b/gdb/testsuite/gdb.threads/next-fork-exec-other-thread.c @@ -50,6 +50,8 @@ worker_a (void *pArg) waitpid (pid, NULL, 0); usleep (5); } + + return NULL; } static void* @@ -61,6 +63,8 @@ worker_b (void *pArg) usleep (5); /* break here */ usleep (5); /* other line */ } + + return NULL; } int diff --git a/gdb/testsuite/gdb.threads/process-exit-status-is-leader-exit-status.c b/gdb/testsuite/gdb.threads/process-exit-status-is-leader-exit-status.c index 3fed562..bd998f9 100644 --- a/gdb/testsuite/gdb.threads/process-exit-status-is-leader-exit-status.c +++ b/gdb/testsuite/gdb.threads/process-exit-status-is-leader-exit-status.c @@ -43,6 +43,7 @@ start (void *arg) int thread_return_value = *(int *) arg; do_exit (thread_return_value); + return NULL; } int |