Fix formatting

This commit is contained in:
ItsDrike 2023-12-12 16:05:05 +01:00
parent c5b1c9da0a
commit 2bc78238ff
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -88,10 +88,10 @@ Consider this code:
3 3
``` ```
In the example here, we can see that python keeps a reference count for the empty list object, and in this case, it was In the example here, we can see that python keeps a reference count for the empty list object, and in this case, there
\3. The list object was referenced by a, b and the argument passed to `sys.getrefcount`. If we didn't have locks, were 3 references. The list object was referenced by a, b and the argument passed to `sys.getrefcount`. If we didn't
threads could attempt to increase the reference count at once, this is a problem because what would actually happen have locks, threads could attempt to increase the reference count at once, this is a problem because what would
would go something like this: actually happen would go something like this:
> Thread 1: Read the current amount of references from memory (for example 5) <br> > Thread 1: Read the current amount of references from memory (for example 5) <br>
> Thread 2: Read the current amount of references from memory (same as above - 5) <br> > Thread 2: Read the current amount of references from memory (same as above - 5) <br>