Re: __dead

2023-11-07 Thread Lucretia
Sorry, I got very confused trying to read this file. C is a lot different than Java what we learned, and the source I've read here is a lot different from the few examples of C I've read in books. I must have overlooked this comment but I did see the define for __dead On Tue, Nov 7, 2023 at 22

Re: __dead

2023-11-07 Thread Crystal Kolipe
On Tue, Nov 07, 2023 at 04:01:12PM +, Lucretia wrote: > I read the whole file top to bottom, slowly and with care, and saw no > comments about __dead. Unless by chance they've been added since > 7.4 release. Immediately above where __dead and __pure are defined is the followin

Re: __dead

2023-11-07 Thread Lucretia
sd.org/style > > On Tue, 07 Nov 2023 16:01:12 + > Lucretia wrote: > >> I read the whole file top to bottom, slowly and with care, and saw no >> comments about __dead. Unless by chance they've been added since 7.4 >> release.

Re: __dead

2023-11-07 Thread Maja Reberc
There's also something about it in style(9) man page. https://man.openbsd.org/style On Tue, 07 Nov 2023 16:01:12 + Lucretia wrote: > I read the whole file top to bottom, slowly and with care, and saw no > comments about __dead. Unless by chance they've been added since 7.4 > release.

Re: __dead

2023-11-07 Thread Lucretia
I read the whole file top to bottom, slowly and with care, and saw no comments about __dead. Unless by chance they've been added since 7.4 release. On Tue, Nov 7, 2023 at 21:15, Crystal Kolipe <[kolip...@exoticsilicon.com](mailto:On Tue, Nov 7, 2023 at 21:15, Crystal Kolipe < wrote: &g

Re: __dead

2023-11-07 Thread Marc Espie
On Tue, Nov 07, 2023 at 03:08:18PM +, Lucretia wrote: > I've seen __dead a few places in the source code, does this mean it isn't > functional anymore, or maybe just deprecated? > It's the old non-standard representation for __attribute__(__noreturn__) in code, to stop the compile

Re: __dead

2023-11-07 Thread Crystal Kolipe
On Tue, Nov 07, 2023 at 03:08:18PM +, Lucretia wrote: > I've seen __dead a few places in the source code, does this mean it isn't > functional anymore, or maybe just deprecated? Read the comments about it in /usr/src/sys/sys/cdefs.h.

__dead

2023-11-07 Thread Lucretia
I've seen __dead a few places in the source code, does this mean it isn't functional anymore, or maybe just deprecated?