From: Joerg Vehlow <lkml@jv-coder.de>
To: ltp@lists.linux.it, bogdan.lezhepekov@suse.com
Cc: Joerg Vehlow <joerg.vehlow@aox-tech.de>
Subject: [LTP] [PATCH 1/3] realtime/librttest: Fix functions with empty parameters
Date: Mon, 15 Nov 2021 09:15:24 +0100 [thread overview]
Message-ID: <20211115081526.384856-2-lkml@jv-coder.de> (raw)
In-Reply-To: <20211115081526.384856-1-lkml@jv-coder.de>
From: Joerg Vehlow <joerg.vehlow@aox-tech.de>
Signed-off-by: Joerg Vehlow <joerg.vehlow@aox-tech.de>
---
testcases/realtime/include/librttest.h | 16 ++++++++--------
testcases/realtime/lib/librttest.c | 2 +-
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/testcases/realtime/include/librttest.h b/testcases/realtime/include/librttest.h
index b829f4089..8e3421869 100644
--- a/testcases/realtime/include/librttest.h
+++ b/testcases/realtime/include/librttest.h
@@ -58,8 +58,8 @@
#include "list.h"
#include "realtime_config.h"
-extern void setup();
-extern void cleanup();
+extern void setup(void);
+extern void cleanup(int i);
extern int optind, opterr, optopt;
extern char *optarg;
@@ -147,15 +147,15 @@ static inline void atomic_set(int i, atomic_t *v)
/* buffer_init: initialize the buffered printing system
*/
-void buffer_init();
+void buffer_init(void);
/* buffer_print: prints the contents of the buffer
*/
-void buffer_print();
+void buffer_print(void);
/* buffer_fini: destroy the buffer
*/
-void buffer_fini();
+void buffer_fini(void);
/* debug: do debug prints at level L (see DBG_* below). If buffer_init
* has been called previously, this will print to the internal memory
@@ -185,7 +185,7 @@ static volatile int _debug_count = 0;
#define DBG_DEBUG 4
/* rt_help: print help for standard args */
-void rt_help();
+void rt_help(void);
/* rt_init_long: initialize librttest
* options: pass in an getopt style string of options -- e.g. "ab:cd::e:"
@@ -269,7 +269,7 @@ void all_threads_quit(void);
/* join_threads: wait for all threads to finish
* (calls all_threads_quit interally)
*/
-void join_threads();
+void join_threads(void);
/* get_thread: return a struct thread pointer from the list */
struct thread * get_thread(int i);
@@ -317,7 +317,7 @@ void rt_nanosleep_until(nsec_t ns);
/* rt_gettime: get CLOCK_MONOTONIC time in nanoseconds
*/
-nsec_t rt_gettime();
+nsec_t rt_gettime(void);
/* busy_work_ms: do busy work for ms milliseconds
*/
diff --git a/testcases/realtime/lib/librttest.c b/testcases/realtime/lib/librttest.c
index 722d99d50..89e2bfc6e 100644
--- a/testcases/realtime/lib/librttest.c
+++ b/testcases/realtime/lib/librttest.c
@@ -276,7 +276,7 @@ void cleanup(int i)
exit(i);
}
-void setup()
+void setup(void)
{
signal(SIGINT, cleanup);
signal(SIGQUIT, cleanup);
--
2.25.1
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2021-11-15 8:16 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-11-15 8:15 [LTP] (no subject) Joerg Vehlow
2021-11-15 8:15 ` Joerg Vehlow [this message]
2021-11-15 15:04 ` [LTP] [PATCH 1/3] realtime/librttest: Fix functions with empty parameters Cyril Hrubis
2021-11-15 8:15 ` [LTP] [PATCH 2/3] realtime/librttest: Fix memory leaks Joerg Vehlow
2021-11-15 15:04 ` Cyril Hrubis
2021-11-15 8:15 ` [LTP] [PATCH 3/3] realtime/matrix_mult: Fix test optimization Joerg Vehlow
2021-11-15 15:22 ` Cyril Hrubis
2021-11-15 15:28 ` Joerg Vehlow
2021-11-15 15:40 ` Cyril Hrubis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211115081526.384856-2-lkml@jv-coder.de \
--to=lkml@jv-coder.de \
--cc=bogdan.lezhepekov@suse.com \
--cc=joerg.vehlow@aox-tech.de \
--cc=ltp@lists.linux.it \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.