Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9227927
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:11:59+00:00 2026-06-18T05:11:59+00:00

I use: signal(SIGINT, CtrlHandler); To add handler of SIGINT event. But how can i

  • 0

I use:

signal(SIGINT, CtrlHandler);

To add handler of SIGINT event. But how can i delete this handler?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T05:12:00+00:00Added an answer on June 18, 2026 at 5:12 am

    Here is what you do:

    signal(SIGINT, SIG_DFL);
    

    That resets the signal handler back to whatever the default behavior was for that signal (including the default disposition if it hasn’t been set). In the case of SIGINT, it’s aborting your process without a core dump.

    The manual for signal explains why this works:

    signal(signum, handler) sets the disposition of the signal signum to handler, which is either SIG_IGN, SIG_DFL, or the address of a programmer-defined function (a “signal handler”). … If the disposition is set to SIG_DFL, then the default action associated with the signal occurs.

    You can also find this information using the man command. If you type man signal on the command line and read through, you should see it.

    This is very specific to the case in which you’ve replaced the system default signal handler. In some situations, what you want is to simply restore whatever handler was there in the first place. If you look at the definition of signal it looks like this:

    sighandler_t signal(int signum, sighandler_t handler);
    

    So, it returns a sighandler_t. The sighandler_t that it returns represents the previous ‘disposition’ of the signal. So, another way to handle this is to simply save the value it returns and then restore that value when you want to remove your own handler.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know you can use signal.alarm() to schedule alarms in your main thread, but
as an exercise I need to use a signal handler, and pipes to send
I use signal(SIGINT,my_handler) to point SIGINT to my_handler . After some time I want
If we use sigaction to define a signal handler, then why don't we need
Can someone tell me, as to why program1's signal handler is not working? Program1:
I want to use signal and slot in my program and for this I
I want to use a generator as the argument passed by a PyQt4 signal,
I'm trying to move a sprite in a QGraphicsView. I use : connect(timer, SIGNAL(timeout()),
The My_Module -module (used in this package) use s Signals::XSIG and sets $XSIG{'WINCH'}[1] =
I use boost::signal with different function signatures and different combiners. In a class that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.