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 7597529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T22:10:44+00:00 2026-05-30T22:10:44+00:00

How to get the handlers’ name/address for some signals (e.g. SIGINT) in Postgres? We

  • 0

How to get the handlers’ name/address for some signals (e.g. SIGINT) in Postgres? We can use signal(SIGINT, my_handler) to set the signal handler, but is there a function that can tell us which function (in this case, my_handler) deals with some signal (in this case, SIGINT)? Or Could we find out using GDB?

  • 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-05-30T22:10:45+00:00Added an answer on May 30, 2026 at 10:10 pm

    The function you are looking for is sigaction. It takes three arguments, the first is the signal, the second is a pointer to the new sigaction structure, and the third is a pointer to the old sigaction structure (to be populated by the function). To get the current signal handler, call the sigaction with the second argument set to NULL. For example,

    struct sigaction oldact;
    sigaction(SIGINT, NULL, &oldact);
    
    printf("SIGINT handler address: 0x%lx\n", oldact.sa_sigaction);
    

    This approach will require you to modify the source.

    You may also be able to do this via gdb, which will not require modifying the source. For example, this will work if you attach to the process after it has registered signal handlers.

    (gdb) call malloc(sizeof(struct sigaction))
    (gdb) sigaction(SIGINT, NULL, $1)
    (gdb) print ((struct sigaction *)$1)->sa_sigaction
    (gdb) info sym <address from previous step>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can i get variable in handler function of obj ? Without reference of
Using python and wsgiref.handlers, I can get a single variable from a form with
How can I get the logging handler object instance(s) in django (>=1.3)? with standard
def self.get(server) return unless server server = server.to_s if klass = @handlers[server] obj =
I have a function: window.onbeforeunload = function () { $.get(Handler.ashx, mode=saveuser&user= + $(#username).text(), function
I need to get the Handler to the child Window of a certain application
I'm trying to get a custom handler to work for a specific URL (or
Why does an event handler never get called if it's added within a loop
A very niche problem: I sometimes (30% of the time) get an 'undefined handler'
I'd like the get the text of editor in a command handler, so how

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.