diff --git a/src/components/Time.tsx b/src/components/Time.tsx index 36ed26b..61f0ba9 100644 --- a/src/components/Time.tsx +++ b/src/components/Time.tsx @@ -7,7 +7,6 @@ type TimeProps = { } const Time: FunctionComponent = ({ time }) => { - console.log({ asGiven: time}); return ( ); diff --git a/src/content/blog/race-conditions-in-signal-handlers.md b/src/content/blog/race-conditions-in-signal-handlers.md index 0e53de1..9a8f4c7 100644 --- a/src/content/blog/race-conditions-in-signal-handlers.md +++ b/src/content/blog/race-conditions-in-signal-handlers.md @@ -159,7 +159,7 @@ See below, the contents of `/proc//status` for a process: It's quite a long file (line numbers added for reference), but it contains a lot of useful information about a given process. -We're interested in `SigCgt` (line 41), which is a bitmask of signals that are caught by the process. The specific bit depends on the platform, but in Python, this can be found in the signal module: +We're interested in `SigCgt`, which is a bitmask of signals that are caught by the process. The specific bit depends on the platform, but in Python, this can be found in the signal module: ```python >>> from signal import SIGUSR1