klange changed the topic of #osdev to: Operating System Development || Don't ask to ask---just ask! || For 3+ LoC, use a pastebin (for example https://gist.github.com/) || Stats + Old logs: http://osdev-logs.qzx.com New Logs: https://libera.irclog.whitequark.org/osdev || Visit https://wiki.osdev.org and https://forum.osdev.org || Books: https://wiki.osdev.org/Books
agent314 has joined #osdev
fgarcia_ is now known as fgarcia
dza has quit [Server closed connection]
dza has joined #osdev
karenw_ has quit [Ping timeout: 252 seconds]
Gooberpatrol_66 has joined #osdev
Gooberpatrol66 has quit [Read error: Connection reset by peer]
edr has quit [Quit: Leaving]
Turn_Left has quit [Read error: Connection reset by peer]
sbalmos has quit [Quit: WeeChat 4.7.0]
sbalmos has joined #osdev
criswell has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Yoofie6464463823 has joined #osdev
melnary has quit [Read error: Connection reset by peer]
criswell has joined #osdev
melnary has joined #osdev
da5id has quit [Quit: WeeChat 4.7.0]
listentolist has quit [Server closed connection]
listentolist has joined #osdev
agent314 has quit [Quit: WeeChat 4.5.2]
agent314 has joined #osdev
Matt|home has joined #osdev
skipwich has quit [Remote host closed the connection]
skipwich has joined #osdev
TkTech0 has joined #osdev
TkTech has quit [Ping timeout: 272 seconds]
TkTech0 is now known as TkTech
alpha2023 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
alpha2023 has joined #osdev
agent314 has quit [Ping timeout: 260 seconds]
criswell has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
rorx has quit [Ping timeout: 265 seconds]
rorx has joined #osdev
agent314 has joined #osdev
pebble has joined #osdev
goliath has joined #osdev
EmanueleDavalli has joined #osdev
mramadany has quit [Server closed connection]
mramadany has joined #osdev
itrsea has quit [Remote host closed the connection]
itrsea has joined #osdev
f1sty has joined #osdev
agent314 has quit [Ping timeout: 252 seconds]
agent3142 has joined #osdev
netbsduser` has joined #osdev
agent3142 is now known as agent314
frkazoid333 has quit [Read error: Connection reset by peer]
Lucretia has joined #osdev
agent314 has quit [Ping timeout: 252 seconds]
f1sty has quit [Quit: leaving]
GeDaMo has joined #osdev
EmanueleDavalli has quit [Quit: Leaving]
bauen1 has quit [Ping timeout: 252 seconds]
netbsduser` has quit [Ping timeout: 260 seconds]
Matt|home has quit [Read error: Connection reset by peer]
Left_Turn has joined #osdev
Turn_Left has joined #osdev
Left_Turn has quit [Ping timeout: 245 seconds]
alpha2023 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
alpha2023 has joined #osdev
bauen1 has joined #osdev
Teukka has quit [Quit: Not to know is bad; not to wish to know is worse. -- African Proverb]
Teukka has joined #osdev
criswell has joined #osdev
jcea has joined #osdev
TkTech8 has joined #osdev
TkTech has quit [Ping timeout: 255 seconds]
TkTech8 is now known as TkTech
agent314 has joined #osdev
agent314 has quit [Ping timeout: 260 seconds]
Turn_Left has quit [Ping timeout: 252 seconds]
f1sty has joined #osdev
zenomat has quit [Server closed connection]
zenomat has joined #osdev
edr has joined #osdev
criswell has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Etabeta1 has joined #osdev
itrsea has quit [Remote host closed the connection]
itrsea has joined #osdev
criswell has joined #osdev
j`ey has quit [Server closed connection]
j`ey has joined #osdev
Left_Turn has joined #osdev
stazthebox has quit [Server closed connection]
stazthebox has joined #osdev
priime has joined #osdev
pebble has quit [Read error: Connection reset by peer]
Turn_Left has joined #osdev
Left_Turn has quit [Ping timeout: 272 seconds]
Left_Turn has joined #osdev
criswell has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
Turn_Left has quit [Ping timeout: 248 seconds]
frkazoid333 has joined #osdev
criswell has joined #osdev
Turn_Left has joined #osdev
Left_Turn has quit [Ping timeout: 248 seconds]
goliath has quit [Quit: SIGSEGV]
f1sty has quit [Ping timeout: 252 seconds]
tronexte has quit [Ping timeout: 276 seconds]
tronexte has joined #osdev
jcea has quit [Ping timeout: 252 seconds]
criswell has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
f1sty has joined #osdev
criswell has joined #osdev
EmanueleDavalli has joined #osdev
deglebe has quit [Server closed connection]
deglebe has joined #osdev
itrsea has quit [Remote host closed the connection]
itrsea has joined #osdev
<ZetItUp> i now im not in a place where i should worry about optimizations, but im writing a little ls program for my os, should i worry about what sorting algorithms i use or does it not really matter?
<nikolar> i mean it matters, it just depends on if you care
<nikolar> though quick sort is probably fine
<heat> as-is you're probably quadratic anyway
<heat> on the readdir() itself
<ZetItUp> yeah thats the one im using, just thought i'd ask if it would end up being an issue, but im in no space near 10s of files in each directory anyway :D
<heat> probably not
<heat> again, your filesystem is quadratic anyway
<heat> well, probably is, since you designed it yourself
<nikolar> what do you mean by quadratic
<heat> ls(1) normally does a readdir() + stat() on that entry
<heat> readdir is obviously O(n), stat() in naive filesystems is O(n) on the lookup
<heat> so O(n^2)
<nikolar> i assume you'd have *something cached*
<heat> nah
<heat> with modern(er) filesystems, you get O(log n) lookups
<heat> e.g ext3 and ext4 and btrfs and zfs and xfs and literally any usable fs out there
<heat> NOT ext2 though
<nikolar> realistically, you should only need O(n) (or log n)
<heat> you're wrong
<nikolar> since you should cache at least the last accessed inode or whatever lol
<heat> what's the last accessed inode?
<nikolar> *last few*
<nikolar> i didn't mean literally just one
<heat> readdir() = reading a directory, independently, in one fd
<heat> stat() = lookup a file, independently
<heat> the two operations don't know about each other
<ZetItUp> yeah im not doing any caching etc, just going from the files ID, and looks at it's parent all the way down to the root
<heat> and on a case like: for patch in patches/*.patch; do cat $patch; done
gildasio has quit [Ping timeout: 240 seconds]
<heat> they will most _definitely_ not know about each other
gildasio has joined #osdev
Left_Turn has joined #osdev
Turn_Left has quit [Ping timeout: 260 seconds]
humm has quit [Server closed connection]
humm has joined #osdev
goliath has joined #osdev
criswell has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<kof673> sadly, ls must be written in inline assembly without any function calls, otherwise we would not have to hardcode the sorting algorithm
<kof673> the tragedy of ls
criswell has joined #osdev
<pog> function calls are stupid anyway
<EmanueleDavalli> function calls are not real, they are just fancy jumps
<EmanueleDavalli> wake up sheeple
<pog> how can you say something so controversial and so brave
* Ermine gives pog a piece of cheese
* pog is fascinated
Turn_Left has joined #osdev
tommybomb has quit [Server closed connection]
tommybomb has joined #osdev
Left_Turn has quit [Ping timeout: 260 seconds]
pog has quit [Server closed connection]
pog has joined #osdev
<zid> pog: You can lead a horse to Evanescence but you can't make it wake up inside
<pog> can't wake up
<nikolar> wise words zid
gog has joined #osdev
gog has quit [Client Quit]
da5id has joined #osdev
netbsduser` has joined #osdev
<mcrod> hi
<pog> hi
sm2n has quit [Server closed connection]
sm2n has joined #osdev
uint64_t has quit [Server closed connection]
uint64_t has joined #osdev
monkeyPlus has joined #osdev
netbsduser` has quit [Ping timeout: 248 seconds]
monkeyPlus has quit [Remote host closed the connection]
lh has quit [Server closed connection]
lh has joined #osdev
alpha2023 has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
alpha2023 has joined #osdev
itrsea has quit [Remote host closed the connection]
itrsea has joined #osdev
vdamewood has quit [Quit: Life beckons]
vismie has quit [Server closed connection]
vismie has joined #osdev
EmanueleDavalli has quit [Quit: Leaving]
Turn_Left has quit [Remote host closed the connection]
Turn_Left has joined #osdev
<ZetItUp> "Can i make this better?", cobbled the register orders with the syscalls and did too much damage to the code i had to go back, aka No i could not make it better :D
<ZetItUp> git is underestimated sometimes
ursa-major has quit [Server closed connection]
ursa-major has joined #osdev
<pog> git reflog has rescued me from my own glaring idiocy on a few occasions
<pog> i stopped using any gui with git since the last time i midnlessly clicked to drop a stash instead of apply it unstaged
<nikolar> we love git
PapaFrog has quit [Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in]
PapaFrog has joined #osdev
gjn has quit [Server closed connection]
gjn has joined #osdev
<zid> no, we all love lain
<nikolar> you can love multiple things
EmanueleDavalli has joined #osdev
<kof673> love not the buildworld, or any part of the buildworld bsd joke for he at :D
f1sty has quit [Read error: Connection reset by peer]
<pog> h e a t
f1sty has joined #osdev
<pie_> do operating systems have to do anything special for implementing signals?
<pie_> i guess you dont even necessarily to anything to the scheduler
monkeyPlus has joined #osdev
<pie_> and i guess its just instead of just context switching to the earlier execution point, youre now context switching to the signal handler instead?
<pie_> so if someone doesnt a longjmp in the signal handler there isnt really anything special about that either, youre just continuing to use your scheduler interval?
<nikolar> what do you mean, signals are sort of very annoying to implement kind of thing
<nikolar> there was a great video on youtube of someone going through the whole path
<pie_> id be interested to take a look if you can find it
<pie_> i imagine the details are terribly annoying and involved, but froma high level?
<nikolar> what do you mean from a high level
<pie_> what more do you need than what i said?
<pie_> well, whatever - if you know how to find the youtube video i'll just watch that
<heat> it turns out "context switching to the signal handler" is a very complex thing
<zid> nesting and locking and stuff sounds like a paain
<zid> and not forgetting you're inside a signal if you get scheduled out during one etc
<bslsk05> ​github.com: Onyx/kernel/arch/x86_64/signal.c at master · heatd/Onyx · GitHub
<heat> you can follow the code paths to get an idea
<pie_> the more i read about signals the less i want to touch them with a 10 foot pole
<pie_> if you are not a 200 iq programmer, what is the correct way to do things without introducing a shitton of bugs?
<heat> test them?
<geist> it's not *too* bad. the big signals get you most of the way there
<geist> there's kinda a logic to them, it's just not super regular
<geist> at least the kernel part of it
<pie_> sorry i mixed up my channels, im raging to some of my other friends too but i can ask here as well :P
<geist> i also remember learning process and session groups and scratching my head until it kinda made a sense
<pie_> *what is the correct way without introducing a shitton of bugs when writing application code?
<heat> what
<geist> correct way of what?
<geist> writing code without shitton of bugs?
<pie_> What is the correct way to write signals code without introducing a shitton of bugs when writing application code? - or alternatively, how can you avoid writing signals code in the first place? The latter is presumably not an option for several features that you have to use signals for.
<heat> you can very easily avoid writing signals code
Left_Turn has joined #osdev
<heat> this is not 1980
<pie_> Im not prepared to become a carpenter
<heat> i can't think of a place where you _need_ to write signals code, or at least where you need to write signals code like it's 1980
<heat> void sigint_handler(int sig) { got_sigint = true; }
<heat> done, there you go, the EVENT LOOP will handle it
<geist> the key is you need to not do a lot inside the signal handler
Turn_Left has quit [Ping timeout: 244 seconds]
<geist> there are severe limits to what you can do inside it, but if you avoid calling things you cant then it's as heat says lots of setting of atomics or whatnot to trigger something else
<geist> like shutdown your event loop, etc
<geist> but honestly i've written signal code like i can count on one hand
<geist> generally to do something like put TTY state back or whatnot
<geist> which is more or less copy/paste boilerplate
<mcrod> man
<mcrod> i know i'm not here anymore but i'm basically moving to a philly suburb
<mcrod> someone throw a party for me
<geist> you can be here!
<geist> is moving to a philly suburb good or bad?
<mcrod> yes
<mcrod> i have train access to philadelphia for $12
<mcrod> and wilmington delaware 25 minutes by car
<mcrod> and infinite food options
<mcrod> most important: 1.2 hour commute reduced to 15 minutes
dennisschagt has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
dennisschagt has joined #osdev
Mutabah has quit [Server closed connection]
<nikolar> You can also just not have signals
* kof673 stares at c89 signal() yeah looks like it will be a lot of fun
Mutabah has joined #osdev
<nikolar> And have a fd that you can wait on for to receive signals if you want
<nikolar> (like linux signalfd)
criswell has quit [Quit: My Mac has gone to sleep. ZZZzzz…]
<pie_> everything has weirdass edgecases
<pie_> i guess only library writers have issues with signalfd specifically?
<pie_> https://lwn.net/Articles/414618/ the comment that starts with " Unfortunately, signalfd has a very irritating practical issue." , https://ldpreload.com/blog/signalfd-is-useless
<bslsk05> ​ldpreload.com: signalfd is useless - Geoffrey Thomas (geofft)
<bslsk05> ​lwn.net: Ghosts of Unix past, part 3: Unfixable designs [LWN.net]
<zid> doesn't mean you have to use linux's exact implmentation
<heat> signalfd is useless, except where they are literally used
<zid> they have it like it is because they also have posix signals
<zid> which means to enable them you have to block the posix signals, which is the problem that guy has
<zid> he wants to run arbitrary programs, that might need posix signals, apparently
<zid> which yea, means they need to be both blocked and unblocked, spooky
<nikolar> i said "like signalfd"
<nikolar> if you're writing an os, you can do whatever you want
<sortie> I like the suggestion in that blog post to have an explicit signalfd handler, like SIG_SFD, and then reset that to SIG_DFL on exec
dennisschagt has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
dennisschagt has joined #osdev
GeDaMo has quit [Quit: 0wt 0f v0w3ls.]
EmanueleDavalli has quit [Quit: Leaving]
exec64 has quit [Server closed connection]
exec64 has joined #osdev
f1sty has quit [Ping timeout: 276 seconds]
monkeyPlus has quit [Remote host closed the connection]
bauen1 has quit [Ping timeout: 260 seconds]
ZipCPU has quit [Read error: Connection reset by peer]
goliath has quit [Quit: SIGSEGV]
Turn_Left has joined #osdev
fgarcia has quit [Quit: Remote host closed the connection]
fgarcia has joined #osdev
Left_Turn has quit [Ping timeout: 260 seconds]
<pog> so i'm making a huge mistake and trying to wrap my head around some modern c++ that i never cared about until today
<pog> and i cribbed some code and i think i'm missing a compiler option to make it work right
<zid> sounds right
<nikolar> lol
<bslsk05> ​gist.github.com: gist:e28bddfa5d4a029a3ccfed386407faa7 · GitHub
<zid> this->*
<zid> That is some disgusting voodoo
<pog> yes
<zid> Thank you for coming to my ted talk
<pog> i don't understand this in the least, but for some reason the args are fucked
<pog> and i bet it has to do with the way the decltype and this->* ish works
<pog> i expect the params to be this, string
<nikolar> decltype is just typeof iirc
<pog> but instead i get this, ???, string in rcx, rdx r8 respectively
<pog> in ms_abi
<pog> but ia _also_ have -fno-ms-extensions
<nikolar> i don't know why you need declype though instead of just putting the tpye there, but that's a separate issue
<pog> not sure if that changes how register parms are passed or not
<pog> this is in the code i cribbed
<pog> a shortcut so you don't have to actualyl declare the full function pointer
<pog> which is probably key to the problem here
<pog> but i have no clue
<pog> does anybody have a clue that i can borrow lol
<pog> i even checked this by writing the contents of r8 into rdx in a debugger and then it works
<nikolar> ask chatgpt :P
<pog> fuck no
<pog> i'd rather never find out than do that
<nikolar> lol
<nikolar> i can tell when the code was written by an "ai" at work
<nikolar> by how much i have to fix it
<nikolar> i already complained to zid
<zid> <pog> i'd rather never find out than do that
<zid> A+
* kof673 gives pog clew for labyrinth...all roads lead to cow tools
<zid> I had a question in my head earlier for if a word with certain synonyms existed and thought, dang, an LLM would be great this. Then said 'Shame those aren't something I'd ever use'.
<nikolar> lol
<nikolar> i only ever use things i don't like to be able to more accurately shit on them
<kof673> there is an old moby thesaurus file...public domain should be...is perhaps too wide of scope sometimes, but that can be useful
<zid> gog did you draw a fleet of undertale characters in wplace yet
<zid> That is apparently, the entirety of the trans agenda
<nikolar> eh?
<zid> eh what
<nikolar> the entirety of the trans agenda is undertale characters in wplace?
<zid> dang, found TWO golshis so far in iceland
<zid> yes
<nikolar> kek they love their golshis
Lucretia has quit [Remote host closed the connection]
<pog> well i hope when an archaeologist finds my bones they're like "whoa sans undertale"
<zid> The crocs will give it away
<heat> pog: what does m_output_string point to?
<zid> I found 20 undertale characters then got distracted by a giant ADO
<pog> heat: second function pointer in EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL
<pog> and it actually does, this works if i move the register value remember
<zid> nice! giant balatro tarot card
<pog> heh there's a long bisexual flag over vesturbær and miðbær
<pog> nice
<zid> do you want to see what I am draw
<nikolar> we love a giant ado
<zid> rip just died for me
<pog> oh and somebody's drawing a long trans flag across kópavogur from kársnes to ulfarsárdal
<pog> nice
<zid> ah is back
<nikolar> yes, i know those places
<nikolar> and how to pronounce them
<pog> yes these are famous places
<nikolar> i already said i know how to pronouncethem, sheeh
<zid> miðbær is where FF7 starts
<pog> yes
<zid> Then you fall off the plate and land in the vesturbær of aeris' church
<pog> i live in sector 7
<pog> well under sector 7
<nikolar> oh the thing is completely dead for me kek
<zid> yea it just died for me too, mostly
<zid> it's flashing at best
<nikolar> webdevs
<kof673> there was some place in egypt IIRC where they built a freeway above a slum...people were making ff7 jokes lol
<zid> webdevs indeed
<pog> webdav
<zid> it's WEBSCALE, which means it breaks all the time
<nikolar> but at scale!
<zid> and costs too much money to run
<zid> I bet I could handle this entire thing on a single computer if I wrote it in C
<nikolar> pog: yes, you place your ping in a folder corresponding to a map location
<nikolar> zid: yes
<nikolar> s/ping/png/
<bslsk05> ​<nikolar*> pog: yes, you place your png in a folder corresponding to a map location
<nikolar> i can't type apparently
ZipCPU has joined #osdev
<nikolar> dang, #osdev brought it to its knees
<zid> we're stronk
* kof673 points at bslsk05 midgard serpent :D
<zid> the brazil armada must have finally hit the portuguese coast
<nikolar> yes we are
<nikolar> yeah that's why heat is barely speaking
<nikolar> he's dodging all the cannonballs
<pog> he's looking into why i'm stupid actually
<pog> and has concluded that it's because i'm trying to use c++ with uefi
<nikolar> why are you trying to use c++ at all
<pog> ibid.
<nikolar> ibid.?
<pog> same as previos footnote
<pog> because stupid
<zid> 'in the same source' apparently
<pog> yeh
<pog> but also i would like all the syntactic sugar
<pog> C gets tedious to me
<nikolar> c++ isn't what you want then
<pog> should i just embrace my destiny and use rust
<nikolar> that's even worse, wtf
<pog> then what should i do
xenos1984 has quit [Read error: Connection reset by peer]
<nikolar> write c
<zid> TRANSPILE (can't believe i wrote that)
<zid> from TYPESCRIPT
<nikolar> > pog | C gets tedious to me
<nikolar> > pog | should i just embrace my destiny and use rust
<nikolar> the jokes write themselves
<zid> I mean y ea, if you think C is tedious
<zid> oh boy
<pog> the trans pile is mostly on rust it seems though
<zid> enjoy rewriting your entire codebase because something needed changing to mutable
<zid> late into the project
<pog> so what you're saying is write it in c
<zid> even though the entire program is thread-free
<nikolar> i am saying: don't write it in c++, and definitely don't write it in rust
<zid> The response was "Well then in what?", and that's a good question tbh
<zid> it'd be NICE if there was an alternative to C that was as practical as C
<zid> zig maybe?
<zid> I saw some fat asian guy writing some zig once it seemed... okay?
<nikolar> zig is cursed in its own ways, don't worry
<zid> oh I bet
<zid> but it looked *usable*
<pog> i started to try to learn zig but got bored
<pog> and went back to C
<zid> Being adventurous is great until you realize you're cold and wet
<zid> and would rather be in bed
<nikolar> zid the poet
<zid> oh hey it took 5 minutes but my pixels do update
<zid> then disappear, then update again, then disappear
<zid> replication WEBSCALE issues
<nikolar> yes baby
* pog looks at the programming langages available
<pog> is zig creepy or wet
<zid> creepy.
<zid> befunge is wet
gog has joined #osdev
<nikolar> it's decided, you should write your uefi stuff in befunge
<pog> this looks like a slightly more featureful brainfuck
<nikolar> yup, less tedious
<zid> it's 2D instead of 1D, mainly
<nikolar> yeah, a whole another dimension you can use
<nikolar> less tedious
<pog> well if i can't figure out the reason for this i'm going to abandon yet another experiment
<nikolar> the experiment being c++?
<nikolar> yea, you do tjhat
<pog> yes
<zid> is what ->* is supposed to do easy to explain
<zid> or is it a 3rd derivative detail of C++
<nikolar> it kind looks like a dereference of a function pointer of a member or something stupid like that
<zid> answer is yes, okay
xenos1984 has joined #osdev
<zid> it is a third derivative
Turn_Left has quit [Read error: Connection reset by peer]
jcea has joined #osdev
<nikolar> ok i think i undestand what ->* does
<nikolar> if you have two pointers, one to the object, another to the arbitrary member of the said object (usually a function) ->* let's you call it correctly
<nikolar> by doing (obj->*func)(), it passes the obj as the hidden argument or whatever so that you get a proper method call
<nikolar> what a stupid language
<nikolar> also ungooglable
<pog> nothing is googlable anyway
<nikolar> some things are even less googlable
<pog> also the author of the code i'm cribbing doesn't provide any proof of concept that this actually executes and with what compiler
<nikolar> lol the compiler *shouldn't* matter
<pog> shouldn't
<nikolar> yes
<nikolar> the c++ standard might though
<pog> but it very well may because i don't even know enough to know if this is well-defined behavior and clearly not becauswe of this mysterious extra parameter
<pog> unless there's another implicit parameter in msabi?
<nikolar> oh also, ->* might be relevant for non function members if you've overloaded assignment?
<nikolar> if that's a thing
<nikolar> i don't know, c++ sucks
<pog> the actual member function itself appears to have three params
<nikolar> i imagine the object itself is the 4th hidden param in that case
<pog> it's also showing rcx = this, rdx = ???, r8 = string
m3a has quit [Remote host closed the connection]
<pog> :(
DragonMaus has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
DragonMaus has joined #osdev
<nikolar> rup
<pog> i want c but more comfy
<pog> c with a human face
<pog> c with rounded corners and soft lighting
<zid> skin bandit C
<nikolar> just c it
<zid> I love skin bandits lol
<nikolar> is that kenshi lol
<zid> yeees
<nikolar> i've only ever seen it on youtube
<zid> For the uninitiated: The skin bandits are a faction in kenshi, who are robots. Robots who want to be people. They achieve this by flaying humans and wearing their skin.
<nikolar> like normal humans do, duh
<zid> 'achieve'
<pog> cool
<zid> gcc-sbc pls
<zid> (skin bandit C)
<nikolar> lol
<pog> fuck i just found it
<pog> maybe?
<pog> seems to think that the return type isn't scalar so it shifts all the params right
<zid> Oh someone is adding a bridget to my town
<nikolar> a what
<zid> trans guilty gear character
<zid> a nun who fights with a yoyo lol
<pog> yes we love bridget
<nikolar> kek
<pog> anyhow i answered my own question thanks y'all for listening to me
<nikolar> you're welcome
<zid> nikolar refuses to help me love lain
<pog> this also confirms that it'll never work the way i want it to and give me that sweet syntactic sugar
<pog> and encapsulation and strongly-typed doohickies
<nikolar> lol
<nikolar> that's just c++ by definition
<zid> -Wconversion boom
<zid> strong types
<nikolar> it never works how you want it to so you have to hack around
<pog> i think i'd be better off rewriting the efi spec with modern C concepts
<zid> like.. not typedefing all pointers to HANDLE?
<pog> yes
<nikolar> who knew
mahk has quit [Ping timeout: 252 seconds]
<pog> i need to go find bjarne and ask him why
<nikolar> i don't think he knows
<zid> That'd require a level of self-reflection
<nikolar> i think c++ does have reflection P
<nikolar> :P
TkTech5 has joined #osdev
<heat> c++26 does, yeah
<nikolar> oh heat finally managed to evade the cannonballs
<zid> They must be reloading
TkTech has quit [Ping timeout: 248 seconds]
TkTech5 is now known as TkTech