Christian Göttsche 397b5c4bd0 Introduce spaceship comparison for Processes
If currently two unsigned values are compared via `a - b`, in the case b
is actually bigger than a, the result will not be an negative number (as
-1 is expected) but a huge positive number as the subtraction is an
unsigned subtraction.

Avoid over-/underflow affected operations; use comparisons.
Modern compilers will generate sane code, like:
    xor     eax, eax
    cmp     rdi, rsi
    seta    al
    sbb     eax, 0
    ret
2020-11-15 18:25:21 +01:00
..
2020-11-02 22:15:01 +01:00
2020-10-18 20:09:05 +02:00
2020-11-02 22:15:01 +01:00
2020-11-02 22:15:01 +01:00
2020-11-02 22:15:01 +01:00
2020-10-16 19:20:07 +02:00
2020-10-31 19:51:42 +01:00
2020-10-31 19:51:42 +01:00
2020-11-02 22:14:59 +01:00
2020-10-31 18:51:53 +01:00
2020-10-31 18:51:53 +01:00