From 3f2d03a78014a7351ccce1732d9d9a3a45637584 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Fri, 19 Jan 2024 15:11:32 +0100 Subject: Cygwin: remove warnings from testsuite build - drop unused variable - remove deprectated usage of std::pointer_to_unary_function. Signed-off-by: Corinna Vinschen --- winsup/testsuite/cygrun.c | 1 - winsup/testsuite/winsup.api/cygload.cc | 9 +++------ winsup/testsuite/winsup.api/cygload.h | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) (limited to 'winsup') diff --git a/winsup/testsuite/cygrun.c b/winsup/testsuite/cygrun.c index 450201342..50c51876e 100644 --- a/winsup/testsuite/cygrun.c +++ b/winsup/testsuite/cygrun.c @@ -22,7 +22,6 @@ main (int argc, char **argv) PROCESS_INFORMATION pi; DWORD res; DWORD ec = 1; - char *p; DWORD timeout = 60 * 1000; if (argc < 2) diff --git a/winsup/testsuite/winsup.api/cygload.cc b/winsup/testsuite/winsup.api/cygload.cc index f5ca8db9a..afd3ee90f 100644 --- a/winsup/testsuite/winsup.api/cygload.cc +++ b/winsup/testsuite/winsup.api/cygload.cc @@ -597,12 +597,9 @@ main (int argc, char *argv[]) } // And signal handling: - std::pointer_to_unary_function < int , void > h1 (&hangup); - std::pointer_to_unary_function < int , void > h2 (&interrupt); - std::pointer_to_unary_function < int , void > h3 (&catch_signal); - cygwin.set_handler (SIGHUP, &h1); - cygwin.set_handler (SIGINT, &h2); - cygwin.set_handler (SIGUSR1, &h3); + cygwin.set_handler (SIGHUP, hangup); + cygwin.set_handler (SIGINT, interrupt); + cygwin.set_handler (SIGUSR1, catch_signal); // Make sure the signal handler thread has had time to start... Sleep (100); diff --git a/winsup/testsuite/winsup.api/cygload.h b/winsup/testsuite/winsup.api/cygload.h index 8007fd593..30154048b 100644 --- a/winsup/testsuite/winsup.api/cygload.h +++ b/winsup/testsuite/winsup.api/cygload.h @@ -102,7 +102,7 @@ namespace cygwin public: // The constructor will automatically hook you up for receiving // cygwin signals. Just specify a signal and pass in a signal_handler. - typedef std::pointer_to_unary_function signal_handler; + typedef void signal_handler (int); signal_handler *set_handler (int signal, signal_handler *); private: -- cgit v1.2.3