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

  • Home
  • SEARCH
  • 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 8602633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T02:07:59+00:00 2026-06-12T02:07:59+00:00

I am trying to implement a handler that on SIGSEGV will collect some information

  • 0

I am trying to implement a handler that on SIGSEGV will collect some information such as process-id, thread-id and a backtrace and write this information to a file/pipe/socket.

The problem lies in that there is the (probably pretty high) possibility that if one thread experienced a SIGSEGV that the others will shortly follow. If two threads happen to make it to the bit of code where they’re writing their report out at the same time then they’ll interleave their writing (to the same file).

I know that I should only be using async-signal-safe functions as detailed in signal(7)
I also have seen at least two cases here and video linked in top answer here where others have used pthread_spin_trylock to get around this problem.

Is this a safe way to prevent the above problem?

  • 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-12T02:08:00+00:00Added an answer on June 12, 2026 at 2:08 am

    On most systems pthread_spin_trylock will be implemented with an atomic compare-and-swap (CAS instruction which is interrupt-safe at least on x86 (can’t speak for others).

    I would probably use the CAS myself to make sure that’s what happens.
    Here is the gcc doc for it:
    http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcc/Atomic-Builtins.html

    And example code:

     static int lock = 0; // global scope
    

    in your signal handler:

     if (__sync_bool_compare_and_swap(&lock, 0, 1)) {
         // Got the lock
     } else
         pthread_exit(); // terminate this thread
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to implement a thread that shows a progressdialog before loading the listview
Trying to implement a search similar to here .This searches properties based on city,locality,property
I trying to implement some relatively simple 2D sprite batching in OpenGL ES 2.0
I am trying to implement a function on jquery datatable, that returns the 1st
I am trying to implement a global exception handler in Asp.NET MVC 4 beta.
I'm trying to implement email confirmation using Pyramid framework. Here's the code that confirms
i'm trying to implement the example http://openlayers.org/dev/examples/drag-feature.html . When i'm implementing this with a
I am trying to implement a sliding drawer where handler is a button/text. The
I am trying to implement a relatively simple DialogFragment that is supposed to contain
I am trying to implement a paste handler to get an image from user's

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.