Remove console.log left, remove line text concerning SigCgt post

This commit is contained in:
2023-11-28 11:02:44 -06:00
parent 8f5eb99bbf
commit c004241c57
2 changed files with 1 additions and 2 deletions

View File

@@ -7,7 +7,6 @@ type TimeProps = {
}
const Time: FunctionComponent<TimeProps> = ({ time }) => {
console.log({ asGiven: time});
return (
<time className="font-mono">{format(time, "MM-dd-yyyy HH:mm OOOO")}</time>
);

View File

@@ -159,7 +159,7 @@ See below, the contents of `/proc/<pid>/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