Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/testsuite/winsup.api/cygload.cc')
-rw-r--r--winsup/testsuite/winsup.api/cygload.cc9
1 files changed, 3 insertions, 6 deletions
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);