mirror of
https://github.com/Xevion/undefined.behavio.rs.git
synced 2025-12-11 04:09:00 -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 }) => {
|
const Time: FunctionComponent<TimeProps> = ({ time }) => {
|
||||||
console.log({ asGiven: time});
|
|
||||||
return (
|
return (
|
||||||
<time className="font-mono">{format(time, "MM-dd-yyyy HH:mm OOOO")}</time>
|
<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.
|
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
|
```python
|
||||||
>>> from signal import SIGUSR1
|
>>> from signal import SIGUSR1
|
||||||
|
|||||||
Reference in New Issue
Block a user