Skip to content

Commit

Permalink
Use underscore italic notation, remove unfinished sentence
Browse files Browse the repository at this point in the history
  • Loading branch information
Xevion committed Nov 2, 2023
1 parent 58a1b0e commit 9c6927a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions _posts/2023-07-26-race-conditions-in-signal-handlers.md
Expand Up @@ -113,7 +113,7 @@ there's a way to check whether signal handlers have been provided or a process.

On Unix systems (which is the only place you're going to find Unix signals), there's a special pseudo-filesystem that
provides intimate details on a process. This includes things like the process's name, state, PID, memory usage, threads,
and of course: *signal handlers*.
and of course: _signal handlers_.

See below, the contents of `/proc/<pid>/status` for a process:

Expand Down Expand Up @@ -178,8 +178,6 @@ If the result is non-zero, the bit is set. If the result is zero, the bit is not

By simply polling the process's signal handlers, we can wait for the signal handler to be registered before sending the `SIGUSR1` signal.

Signal handlers are typically registered quickly, and they're

### Credits

Credit to [Eryk Sun][python-discuss-solution] for explaining the issue and providing an immaculate solution to signal
Expand Down

1 comment on commit 9c6927a

@vercel
Copy link

@vercel vercel bot commented on 9c6927a Nov 2, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.