Live data from Hacker News

Viewing profile — lsof

lsof

HN member
Joined
Tue, Apr 05, 2022, 3:30 PM UTC
HN karma
191
Public activity
7 items

About lsof

No profile information was provided.

Recent public activity

  1. comment
    Comment #36531467

    On that note, something that caught me off guard once is that C11 _Alignof and GCC __alignof__ can differ: for example in 32-bit x86 __alignof__(double) == 8 but _Alignof(double) =…

  2. comment
    Comment #32649022

    > I’m quite confused by “bitfield” do you mean the container field (the one that’s actually defined by the `bitfield` keyword) or the contained sub-fields? By 'field' I meant the c…

  3. comment
    Comment #32648238

    Red is the least significant bit, because offsets start at bit #0. Endianness is not a concern because you have to specify the underlying integer type, and bit endianness is not a …

  4. comment
    Comment #32648082

    The language I'm working on has the following syntax bitfield ColorWriteMaskFlags : u32 { red 1 bool, green 1 bool, blue 1 bool, alpha 1 bool, }; The number after the field name is…

  5. comment
    Comment #32346835

    Well, I meant that loops are limited within the normal constraints of the C standard, which doesn't offer tail call elimination, but indeed as you point out it is easy to work arou…

  6. comment
    Comment #32346807

    That printf exploit is quite impressive I think.

  7. story