mirror of
https://github.com/Xevion/undefined.behavio.rs.git
synced 2025-12-10 06:09:03 -06:00
Remove console.log left, remove line text concerning SigCgt post
This commit is contained in:
@@ -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>
|
||||
);
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user