Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

"Imitation is the sincerest form of television." -- The New Mighty Mouse


devel / comp.lang.c / Is this defined behavior?

SubjectAuthor
* Is this defined behavior?Anthony Cuozzo
`* Re: Is this defined behavior?Keith Thompson
 `* Re: Is this defined behavior?Tim Rentsch
  `* Re: Is this defined behavior?Malcolm McLean
   +* Re: Is this defined behavior?Keith Thompson
   |`* Re: Is this defined behavior?Malcolm McLean
   | `* Re: Is this defined behavior?Keith Thompson
   |  `- Re: Is this defined behavior?Malcolm McLean
   `* Re: Is this defined behavior?David Brown
    +* Re: Is this defined behavior?Malcolm McLean
    |`* Re: Is this defined behavior?Keith Thompson
    | +* Re: Is this defined behavior?Malcolm McLean
    | |+* Re: Is this defined behavior?Keith Thompson
    | ||`- Re: Is this defined behavior?Kenny McCormack
    | |`* Re: Is this defined behavior?Poprocks
    | | +- Re: Is this defined behavior?Malcolm McLean
    | | `* Is this sane behavior? (Was: Is this defined behavior?)Kenny McCormack
    | |  `- Re: Is this sane behavior? (Was: Is this defined behavior?)Malcolm McLean
    | `- Re: Is this defined behavior?Tim Rentsch
    `* Re: Is this defined behavior?Ben Bacarisse
     `- Re: Is this defined behavior?David Brown

1
Is this defined behavior?

<7h8vN.323427$xHn7.112429@fx14.iad>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32376&group=comp.lang.c#32376

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!newsreader4.netcologne.de!news.netcologne.de!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!fx14.iad.POSTED!not-for-mail
MIME-Version: 1.0
User-Agent: Mozilla Thunderbird
Newsgroups: comp.lang.c
Content-Language: en-US
From: anth...@cuozzo.us (Anthony Cuozzo)
Subject: Is this defined behavior?
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Lines: 13
Message-ID: <7h8vN.323427$xHn7.112429@fx14.iad>
X-Complaints-To: abuse@usenetserver.com
NNTP-Posting-Date: Fri, 02 Feb 2024 15:56:51 UTC
Organization: UsenetServer - www.usenetserver.com
Date: Fri, 2 Feb 2024 10:56:51 -0500
X-Received-Bytes: 898
 by: Anthony Cuozzo - Fri, 2 Feb 2024 15:56 UTC

Time T: Add N to a uintptr_t

Time T+1: Subtract N from that same uintptr_t

Questions:

1. Is this behavior defined?

2. If it is, then will I be guaranteed to get back the same void * value
I cast to uintptr_t?

Thank you,
--Anthony

Re: Is this defined behavior?

<8734uaq19p.fsf@nosuchdomain.example.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32378&group=comp.lang.c#32378

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Keith.S....@gmail.com (Keith Thompson)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Fri, 02 Feb 2024 08:28:02 -0800
Organization: None to speak of
Lines: 34
Message-ID: <8734uaq19p.fsf@nosuchdomain.example.com>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
MIME-Version: 1.0
Content-Type: text/plain
Injection-Info: dont-email.me; posting-host="a25c07b6296b5291e04aff5e5cd7fea7";
logging-data="2817526"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19a7JkPMQpnMTrBkg6pFFUp"
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Cancel-Lock: sha1:xkPx3Udn1Bw6YmlqIng6Fx8YpOA=
sha1:dgGfWegU33bgv8ZSdJ1ik1TignY=
 by: Keith Thompson - Fri, 2 Feb 2024 16:28 UTC

Anthony Cuozzo <anthony@cuozzo.us> writes:
> Time T: Add N to a uintptr_t
>
> Time T+1: Subtract N from that same uintptr_t
>
> Questions:
>
> 1. Is this behavior defined?

Sure, why wouldn't it be? uintptr_t is just an unsigned integer type.
The guarantees about converting to and from void* don't affect its
arithmetic behavior. Adding and then subtracting N yields the original
value.

> 2. If it is, then will I be guaranteed to get back the same void *
> value I cast to uintptr_t?

If the result of the conversion is a valid pointer value, yes. In
particular, if the original value is the result of converting a valid
void* value, the guarantee in the standard applies:

The following type designates an unsigned integer type with the
property that any valid pointer to void can be converted to this
type, then converted back to pointer to void, and the result will
compare equal to the original pointer:

uintptr_t

Adding and subtracting N between the conversions is well defined.

--
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
Working, but not speaking, for Medtronic
void Void(void) { Void(); } /* The recursive call of the void */

Re: Is this defined behavior?

<8634ua9bts.fsf@linuxsc.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32421&group=comp.lang.c#32421

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: tr.17...@z991.linuxsc.com (Tim Rentsch)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sat, 03 Feb 2024 00:44:15 -0800
Organization: A noiseless patient Spider
Lines: 21
Message-ID: <8634ua9bts.fsf@linuxsc.com>
References: <7h8vN.323427$xHn7.112429@fx14.iad> <8734uaq19p.fsf@nosuchdomain.example.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Injection-Info: dont-email.me; posting-host="86b83c500004563f07cda2ade1e7584b";
logging-data="3221634"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19jf25+ExO5PW6ncmDnI6DxV26s0QkSthE="
User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.4 (gnu/linux)
Cancel-Lock: sha1:hyxLtGkCCfuga/ztKBP9pDZOzqE=
sha1:6Xye80PZ4TX48h8T8C4DBBNguM0=
 by: Tim Rentsch - Sat, 3 Feb 2024 08:44 UTC

Keith Thompson <Keith.S.Thompson+u@gmail.com> writes:

> Anthony Cuozzo <anthony@cuozzo.us> writes:
>
>> Time T: Add N to a uintptr_t
>>
>> Time T+1: Subtract N from that same uintptr_t
>>
>> Questions:
>>
>> 1. Is this behavior defined?
>
> Sure, why wouldn't it be? uintptr_t is just an unsigned integer
> type. The guarantees about converting to and from void* don't
> affect its arithmetic behavior. Adding and then subtracting N
> yields the original value.

Extremely likely to hold. A perverse implementation could choose
(IIANM) a uintptr_t whose integer conversion rank is less than
that of int, and that could mess things up. In practical terms
though what you say is spot on.

Re: Is this defined behavior?

<uploc3$36iui$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32447&group=comp.lang.c#32447

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!paganini.bofh.team!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: malcolm....@gmail.com (Malcolm McLean)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sat, 3 Feb 2024 16:07:30 +0000
Organization: A noiseless patient Spider
Lines: 35
Message-ID: <uploc3$36iui$1@dont-email.me>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sat, 3 Feb 2024 16:07:31 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="e8299f3f736bf93f9780492f85801191";
logging-data="3361746"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/PpbT7iN4mf+1JP1mqMu0GqQaCMdDFk60="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:9OR9x5WXETkMtRwZ7EDSF5mnZE4=
Content-Language: en-GB
In-Reply-To: <8634ua9bts.fsf@linuxsc.com>
 by: Malcolm McLean - Sat, 3 Feb 2024 16:07 UTC

On 03/02/2024 08:44, Tim Rentsch wrote:
> Keith Thompson <Keith.S.Thompson+u@gmail.com> writes:
>
>> Anthony Cuozzo <anthony@cuozzo.us> writes:
>>
>>> Time T: Add N to a uintptr_t
>>>
>>> Time T+1: Subtract N from that same uintptr_t
>>>
>>> Questions:
>>>
>>> 1. Is this behavior defined?
>>
>> Sure, why wouldn't it be? uintptr_t is just an unsigned integer
>> type. The guarantees about converting to and from void* don't
>> affect its arithmetic behavior. Adding and then subtracting N
>> yields the original value.
>
> Extremely likely to hold. A perverse implementation could choose
> (IIANM) a uintptr_t whose integer conversion rank is less than
> that of int, and that could mess things up. In practical terms
> though what you say is spot on.

OK, so this is completely topical and there's no issue there. But it's
also fair to say that it's the sort of post which gives the newgroup a
bad reputation.

I'm not going to take a position. But since we've had complaints about
the diection things are going in, other people might like to weigh in on
this.

--
Check out Basic Algorithms and my other books:
https://www.lulu.com/spotlight/bgy1mm

Re: Is this defined behavior?

<87zfwhmdjd.fsf@nosuchdomain.example.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32467&group=comp.lang.c#32467

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Keith.S....@gmail.com (Keith Thompson)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sat, 03 Feb 2024 13:41:10 -0800
Organization: None to speak of
Lines: 35
Message-ID: <87zfwhmdjd.fsf@nosuchdomain.example.com>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain
Injection-Info: dont-email.me; posting-host="026cbd12272797f54d5c091ea0e8c8d6";
logging-data="3473395"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/gIiwfeF10mF2wzI4mHNrX"
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Cancel-Lock: sha1:oxNiakcq+L8PVMDH+6+bjjejYNQ=
sha1:FRnY7JF1gEkkbNx6ZjXAVESmngk=
 by: Keith Thompson - Sat, 3 Feb 2024 21:41 UTC

Malcolm McLean <malcolm.arthur.mclean@gmail.com> writes:
> On 03/02/2024 08:44, Tim Rentsch wrote:
>> Keith Thompson <Keith.S.Thompson+u@gmail.com> writes:
>>> Anthony Cuozzo <anthony@cuozzo.us> writes:
>>>> Time T: Add N to a uintptr_t
>>>>
>>>> Time T+1: Subtract N from that same uintptr_t
>>>>
>>>> Questions:
>>>>
>>>> 1. Is this behavior defined?
>>>
>>> Sure, why wouldn't it be? uintptr_t is just an unsigned integer
>>> type. The guarantees about converting to and from void* don't
>>> affect its arithmetic behavior. Adding and then subtracting N
>>> yields the original value.
>> Extremely likely to hold. A perverse implementation could choose
>> (IIANM) a uintptr_t whose integer conversion rank is less than
>> that of int, and that could mess things up. In practical terms
>> though what you say is spot on.
>
> OK, so this is completely topical and there's no issue there. But it's
> also fair to say that it's the sort of post which gives the newgroup a
> bad reputation.
>
> I'm not going to take a position. But since we've had complaints about
> the diection things are going in, other people might like to weigh in
> on this.

What on Earth are you talking about?

--
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
Working, but not speaking, for Medtronic
void Void(void) { Void(); } /* The recursive call of the void */

Re: Is this defined behavior?

<upmvmg$3gktm$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32479&group=comp.lang.c#32479

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: malcolm....@gmail.com (Malcolm McLean)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sun, 4 Feb 2024 03:18:39 +0000
Organization: A noiseless patient Spider
Lines: 45
Message-ID: <upmvmg$3gktm$1@dont-email.me>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me> <87zfwhmdjd.fsf@nosuchdomain.example.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sun, 4 Feb 2024 03:18:40 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="fcf0df7bcd861b030b7dd31ce00bdf37";
logging-data="3691446"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18pLIFJknm4tM62PJklEZjN/kgzekpm/cw="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:Dnn3E9qKQgN2CCkopfGhu6Seeuw=
Content-Language: en-GB
In-Reply-To: <87zfwhmdjd.fsf@nosuchdomain.example.com>
 by: Malcolm McLean - Sun, 4 Feb 2024 03:18 UTC

On 03/02/2024 21:41, Keith Thompson wrote:
> Malcolm McLean <malcolm.arthur.mclean@gmail.com> writes:
>> On 03/02/2024 08:44, Tim Rentsch wrote:
>>> Keith Thompson <Keith.S.Thompson+u@gmail.com> writes:
>>>> Anthony Cuozzo <anthony@cuozzo.us> writes:
>>>>> Time T: Add N to a uintptr_t
>>>>>
>>>>> Time T+1: Subtract N from that same uintptr_t
>>>>>
>>>>> Questions:
>>>>>
>>>>> 1. Is this behavior defined?
>>>>
>>>> Sure, why wouldn't it be? uintptr_t is just an unsigned integer
>>>> type. The guarantees about converting to and from void* don't
>>>> affect its arithmetic behavior. Adding and then subtracting N
>>>> yields the original value.
>>> Extremely likely to hold. A perverse implementation could choose
>>> (IIANM) a uintptr_t whose integer conversion rank is less than
>>> that of int, and that could mess things up. In practical terms
>>> though what you say is spot on.
>>
>> OK, so this is completely topical and there's no issue there. But it's
>> also fair to say that it's the sort of post which gives the newgroup a
>> bad reputation.
>>
>> I'm not going to take a position. But since we've had complaints about
>> the diection things are going in, other people might like to weigh in
>> on this.
>
> What on Earth are you talking about?
>
It's objectively the case that this sort of post gives the ng a bad
reputation. But we don't necessarily have to care what other people
think. So I'm not criticising Tim for this. I'm not saying that the post
should not have been made. I'm not taking a position.

But the issue of sort of material we wish to see has been raised, and as
regular contributor myself, I'm interested in what other people think.
Is this the sort of material you wish to see? I'm interested in views.
Including yours.
--
Check out Basic Algorithms and my other books:
https://www.lulu.com/spotlight/bgy1mm

Re: Is this defined behavior?

<8734u8nb3c.fsf@nosuchdomain.example.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32480&group=comp.lang.c#32480

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Keith.S....@gmail.com (Keith Thompson)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sat, 03 Feb 2024 19:48:39 -0800
Organization: None to speak of
Lines: 43
Message-ID: <8734u8nb3c.fsf@nosuchdomain.example.com>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me>
<87zfwhmdjd.fsf@nosuchdomain.example.com>
<upmvmg$3gktm$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain
Injection-Info: dont-email.me; posting-host="1e44218e6d1b3ee096a2122e7ebd5fda";
logging-data="3696953"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18rwOsGH1IAy54xr7eDKI2h"
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Cancel-Lock: sha1:LDGcsQ6y/1RF69d4Amrwi62gr2M=
sha1:JYs1CjBYFx/n0sgLetdQKPhj9Mc=
 by: Keith Thompson - Sun, 4 Feb 2024 03:48 UTC

Malcolm McLean <malcolm.arthur.mclean@gmail.com> writes:
> On 03/02/2024 21:41, Keith Thompson wrote:
>> Malcolm McLean <malcolm.arthur.mclean@gmail.com> writes:
>>> On 03/02/2024 08:44, Tim Rentsch wrote:
>>>> Keith Thompson <Keith.S.Thompson+u@gmail.com> writes:
>>>>> Anthony Cuozzo <anthony@cuozzo.us> writes:
>>>>>> Time T: Add N to a uintptr_t
>>>>>>
>>>>>> Time T+1: Subtract N from that same uintptr_t
>>>>>>
>>>>>> Questions:
>>>>>>
>>>>>> 1. Is this behavior defined?
>>>>>
>>>>> Sure, why wouldn't it be? uintptr_t is just an unsigned integer
>>>>> type. The guarantees about converting to and from void* don't
>>>>> affect its arithmetic behavior. Adding and then subtracting N
>>>>> yields the original value.
>>>> Extremely likely to hold. A perverse implementation could choose
>>>> (IIANM) a uintptr_t whose integer conversion rank is less than
>>>> that of int, and that could mess things up. In practical terms
>>>> though what you say is spot on.
>>>
>>> OK, so this is completely topical and there's no issue there. But it's
>>> also fair to say that it's the sort of post which gives the newgroup a
>>> bad reputation.
>>>
>>> I'm not going to take a position. But since we've had complaints about
>>> the diection things are going in, other people might like to weigh in
>>> on this.
>> What on Earth are you talking about?
>>
> It's objectively the case that this sort of post gives the ng a bad
> reputation.

Nonsense.

[snip more nonsense]

--
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
Working, but not speaking, for Medtronic
void Void(void) { Void(); } /* The recursive call of the void */

Re: Is this defined behavior?

<upn43v$3h43p$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32482&group=comp.lang.c#32482

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: malcolm....@gmail.com (Malcolm McLean)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sun, 4 Feb 2024 04:34:07 +0000
Organization: A noiseless patient Spider
Lines: 47
Message-ID: <upn43v$3h43p$1@dont-email.me>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me> <87zfwhmdjd.fsf@nosuchdomain.example.com>
<upmvmg$3gktm$1@dont-email.me> <8734u8nb3c.fsf@nosuchdomain.example.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sun, 4 Feb 2024 04:34:08 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="fcf0df7bcd861b030b7dd31ce00bdf37";
logging-data="3707001"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18MVtfPQOXx+cMcXw81TYc00gs/5DToYpE="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:Hm3X5e/7l8bU8HO0+/Y7+Rs2n6g=
In-Reply-To: <8734u8nb3c.fsf@nosuchdomain.example.com>
Content-Language: en-GB
 by: Malcolm McLean - Sun, 4 Feb 2024 04:34 UTC

On 04/02/2024 03:48, Keith Thompson wrote:
> Malcolm McLean <malcolm.arthur.mclean@gmail.com> writes:
>> On 03/02/2024 21:41, Keith Thompson wrote:
>>> Malcolm McLean <malcolm.arthur.mclean@gmail.com> writes:
>>>> On 03/02/2024 08:44, Tim Rentsch wrote:
>>>>> Keith Thompson <Keith.S.Thompson+u@gmail.com> writes:
>>>>>> Anthony Cuozzo <anthony@cuozzo.us> writes:
>>>>>>> Time T: Add N to a uintptr_t
>>>>>>>
>>>>>>> Time T+1: Subtract N from that same uintptr_t
>>>>>>>
>>>>>>> Questions:
>>>>>>>
>>>>>>> 1. Is this behavior defined?
>>>>>>
>>>>>> Sure, why wouldn't it be? uintptr_t is just an unsigned integer
>>>>>> type. The guarantees about converting to and from void* don't
>>>>>> affect its arithmetic behavior. Adding and then subtracting N
>>>>>> yields the original value.
>>>>> Extremely likely to hold. A perverse implementation could choose
>>>>> (IIANM) a uintptr_t whose integer conversion rank is less than
>>>>> that of int, and that could mess things up. In practical terms
>>>>> though what you say is spot on.
>>>>
>>>> OK, so this is completely topical and there's no issue there. But it's
>>>> also fair to say that it's the sort of post which gives the newgroup a
>>>> bad reputation.
>>>>
>>>> I'm not going to take a position. But since we've had complaints about
>>>> the diection things are going in, other people might like to weigh in
>>>> on this.
>>> What on Earth are you talking about?
>>>
>> It's objectively the case that this sort of post gives the ng a bad
>> reputation.
>
> Nonsense.
>
> [snip more nonsense]
>
Bless.
You've been invited to give your view. If you won't do so, I hope you
won't blame me if therefore your views don't count.
--
Check out Basic Algorithms and my other books:
https://www.lulu.com/spotlight/bgy1mm

Re: Is this defined behavior?

<upnvla$3l4rm$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32492&group=comp.lang.c#32492

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: david.br...@hesbynett.no (David Brown)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sun, 4 Feb 2024 13:24:08 +0100
Organization: A noiseless patient Spider
Lines: 76
Message-ID: <upnvla$3l4rm$1@dont-email.me>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 4 Feb 2024 12:24:10 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="a3db07a613a66bd60febae6cdc752b9f";
logging-data="3838838"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18WXKnKQMtSOegywY3gYHC86ciIv8HlR6U="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:tu6Nnn6xtF6ch1iS7NEmTV08qxE=
In-Reply-To: <uploc3$36iui$1@dont-email.me>
Content-Language: en-GB
 by: David Brown - Sun, 4 Feb 2024 12:24 UTC

On 03/02/2024 17:07, Malcolm McLean wrote:
> On 03/02/2024 08:44, Tim Rentsch wrote:
>> Keith Thompson <Keith.S.Thompson+u@gmail.com> writes:
>>
>>> Anthony Cuozzo <anthony@cuozzo.us> writes:
>>>
>>>> Time T:  Add N to a uintptr_t
>>>>
>>>> Time T+1:  Subtract N from that same uintptr_t
>>>>
>>>> Questions:
>>>>
>>>> 1.  Is this behavior defined?
>>>
>>> Sure, why wouldn't it be?  uintptr_t is just an unsigned integer
>>> type.  The guarantees about converting to and from void* don't
>>> affect its arithmetic behavior.  Adding and then subtracting N
>>> yields the original value.
>>
>> Extremely likely to hold.  A perverse implementation could choose
>> (IIANM) a uintptr_t whose integer conversion rank is less than
>> that of int, and that could mess things up.  In practical terms
>> though what you say is spot on.

An 8-bit implementation with very limited RAM might use 8-bit pointers,
at least for "normal" pointers. (Typically such systems also support
extensions such as "far" pointers, or "code memory" pointers.) I
haven't seen such an implementation, but it is certainly conceivable.
("int" would be 16-bit.)

>
> OK, so this is completely topical and there's no issue there. But it's
> also fair to say that it's the sort of post which gives the newgroup a
> bad reputation.
>

No, it is the kind of thing that gives this group a /good/ reputation.

People with questions about C behaviour can come here and ask, and get
considered answers. In particular, they get answers from people who
look carefully at the standards - not just one or two implementations.
They tell you about uncommon situations that others might not have
considered - including uncommon real implementations, and also possible
implementations. For people who want to write code that they /know/
works, and /know/ is correct even if it is used on other platforms, this
kind of information is invaluable.

For people who are happy with "I tried it and it worked on my compiler
on my machine", it is of little interest.

If this newsgroup were filled with nothing but discussions about C
standard minutiae, it would be boring to many people - and yet still a
value resource for people to visit when they need to. But it is not
filled with that - it is an important aspect of the group, but not the
only one.

The validity of pointers as they are converted or arithmetic is applied
is of huge interest, and is a significant area of research in language
design and compiler design. There is a lot of work being done on
"pointer providence" - where pointers come from, and what they can point
to. Knowing what, if anything, they can point to, and whether there
are aliases, is massively relevant to code correctness and optimisation
opportunities for compilers.

If you don't care about any of this, that's fine - skip the thread. But
let the people that do care talk about these things.

> I'm not going to take a position. But since we've had complaints about
> the diection things are going in, other people might like to weigh in on
> this.
>

You /have/ taken a position, and you /have/ criticised Tim for his post
- by making this complaint.

Re: Is this defined behavior?

<upo9ov$3mq1h$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32499&group=comp.lang.c#32499

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!paganini.bofh.team!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: malcolm....@gmail.com (Malcolm McLean)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sun, 4 Feb 2024 15:16:47 +0000
Organization: A noiseless patient Spider
Lines: 14
Message-ID: <upo9ov$3mq1h$1@dont-email.me>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me> <upnvla$3l4rm$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sun, 4 Feb 2024 15:16:47 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="fcf0df7bcd861b030b7dd31ce00bdf37";
logging-data="3893297"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18s/oBwJCPAaIVF/F001SqCN4ZWa85rFZM="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:BjSSK8KopFlaHmwKj7OtmFUp6IU=
Content-Language: en-GB
In-Reply-To: <upnvla$3l4rm$1@dont-email.me>
 by: Malcolm McLean - Sun, 4 Feb 2024 15:16 UTC

On 04/02/2024 12:24, David Brown wrote:
>
> You /have/ taken a position, and you /have/ criticised Tim for his post
> - by making this complaint.
>

Other people have made that complaint. I'm not making it myself. But
other people have said this, so it is therefore an issue.

I want other people's views, and thnk you for giving yours.
--
Check out Basic Algorithms and my other books:
https://www.lulu.com/spotlight/bgy1mm

Re: Is this defined behavior?

<87cytcp7vz.fsf@bsb.me.uk>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32500&group=comp.lang.c#32500

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!news.hispagatos.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ben.use...@bsb.me.uk (Ben Bacarisse)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sun, 04 Feb 2024 15:27:12 +0000
Organization: A noiseless patient Spider
Lines: 40
Message-ID: <87cytcp7vz.fsf@bsb.me.uk>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me> <upnvla$3l4rm$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
Injection-Info: dont-email.me; posting-host="c4748642dcec101274fd00f2aa84f1be";
logging-data="3899774"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19Pc4ggprszM2gRdlJ7P237Iao/s/C6QjM="
User-Agent: Gnus/5.13 (Gnus v5.13)
Cancel-Lock: sha1:+YMgb/V2hx62zemGGFYMpDaJOCI=
sha1:9x8BPkOl2j67/8lkq01cQg9+YoI=
X-BSB-Auth: 1.67119a64811784284896.20240204152712GMT.87cytcp7vz.fsf@bsb.me.uk
 by: Ben Bacarisse - Sun, 4 Feb 2024 15:27 UTC

David Brown <david.brown@hesbynett.no> writes:

> On 03/02/2024 17:07, Malcolm McLean wrote:
>> On 03/02/2024 08:44, Tim Rentsch wrote:
>>> Keith Thompson <Keith.S.Thompson+u@gmail.com> writes:
>>>
>>>> Anthony Cuozzo <anthony@cuozzo.us> writes:
>>>>
>>>>> Time T:  Add N to a uintptr_t
>>>>>
>>>>> Time T+1:  Subtract N from that same uintptr_t
>>>>>
>>>>> Questions:
>>>>>
>>>>> 1.  Is this behavior defined?
>>>>
>>>> Sure, why wouldn't it be?  uintptr_t is just an unsigned integer
>>>> type.  The guarantees about converting to and from void* don't
>>>> affect its arithmetic behavior.  Adding and then subtracting N
>>>> yields the original value.
>>>
>>> Extremely likely to hold.  A perverse implementation could choose
>>> (IIANM) a uintptr_t whose integer conversion rank is less than
>>> that of int, and that could mess things up.  In practical terms
>>> though what you say is spot on.
>
> An 8-bit implementation with very limited RAM might use 8-bit pointers, at
> least for "normal" pointers. (Typically such systems also support
> extensions such as "far" pointers, or "code memory" pointers.) I haven't
> seen such an implementation, but it is certainly conceivable. ("int" would
> be 16-bit.)

I think you are suggesting that uintptr_t might, on such a system, be
only 8 bits wide, but that's no permitted. UINTPTR_MAX can be no less
than 2**16 - 1. Of course that alone does not prevent its rank being
less that that of int, but the system you describe would not be an
example.

--
Ben.

Re: Is this defined behavior?

<upoh5k$3o7ig$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32510&group=comp.lang.c#32510

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: david.br...@hesbynett.no (David Brown)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sun, 4 Feb 2024 18:23:00 +0100
Organization: A noiseless patient Spider
Lines: 50
Message-ID: <upoh5k$3o7ig$1@dont-email.me>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me> <upnvla$3l4rm$1@dont-email.me>
<87cytcp7vz.fsf@bsb.me.uk>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Sun, 4 Feb 2024 17:23:00 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="a3db07a613a66bd60febae6cdc752b9f";
logging-data="3939920"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18hcLKWQBs+peT2K7pWvAsjxbcl0FIzg8M="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:O+pRkq0LWcXmRBrDxJjzf7pgFik=
Content-Language: en-GB
In-Reply-To: <87cytcp7vz.fsf@bsb.me.uk>
 by: David Brown - Sun, 4 Feb 2024 17:23 UTC

On 04/02/2024 16:27, Ben Bacarisse wrote:
> David Brown <david.brown@hesbynett.no> writes:
>
>> On 03/02/2024 17:07, Malcolm McLean wrote:
>>> On 03/02/2024 08:44, Tim Rentsch wrote:
>>>> Keith Thompson <Keith.S.Thompson+u@gmail.com> writes:
>>>>
>>>>> Anthony Cuozzo <anthony@cuozzo.us> writes:
>>>>>
>>>>>> Time T:  Add N to a uintptr_t
>>>>>>
>>>>>> Time T+1:  Subtract N from that same uintptr_t
>>>>>>
>>>>>> Questions:
>>>>>>
>>>>>> 1.  Is this behavior defined?
>>>>>
>>>>> Sure, why wouldn't it be?  uintptr_t is just an unsigned integer
>>>>> type.  The guarantees about converting to and from void* don't
>>>>> affect its arithmetic behavior.  Adding and then subtracting N
>>>>> yields the original value.
>>>>
>>>> Extremely likely to hold.  A perverse implementation could choose
>>>> (IIANM) a uintptr_t whose integer conversion rank is less than
>>>> that of int, and that could mess things up.  In practical terms
>>>> though what you say is spot on.
>>
>> An 8-bit implementation with very limited RAM might use 8-bit pointers, at
>> least for "normal" pointers. (Typically such systems also support
>> extensions such as "far" pointers, or "code memory" pointers.) I haven't
>> seen such an implementation, but it is certainly conceivable. ("int" would
>> be 16-bit.)
>
> I think you are suggesting that uintptr_t might, on such a system, be
> only 8 bits wide, but that's no permitted. UINTPTR_MAX can be no less
> than 2**16 - 1. Of course that alone does not prevent its rank being
> less that that of int, but the system you describe would not be an
> example.
>

Good point. (Of course, many 8-bit implementations have deviations from
the standards, at least as options - some allow 8-bit "int", for
example. But then we are no longer talking about standard C.)

I have also used a system where the total memory space fit within a 16
bit address range, while the cpu can handle 32-bit data and arithmetic
directly. IIRC, it had a 16-bit "int", but such a system could
reasonably have had 16-bit uintptr_t and 32-bit int. But again, that's
still hypothetical - just not unimaginable.

Re: Is this defined behavior?

<87v873lxvh.fsf@nosuchdomain.example.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32519&group=comp.lang.c#32519

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Keith.S....@gmail.com (Keith Thompson)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sun, 04 Feb 2024 13:31:46 -0800
Organization: None to speak of
Lines: 25
Message-ID: <87v873lxvh.fsf@nosuchdomain.example.com>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me> <upnvla$3l4rm$1@dont-email.me>
<upo9ov$3mq1h$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain
Injection-Info: dont-email.me; posting-host="1e44218e6d1b3ee096a2122e7ebd5fda";
logging-data="4039822"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/iB31TjUSCYIIDUTSdDV+m"
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Cancel-Lock: sha1:A2phHLGW+rM7wHsgZ5FnkmaVjHc=
sha1:bhX9lndEWRoiqBVK33QborV6Gmc=
 by: Keith Thompson - Sun, 4 Feb 2024 21:31 UTC

Malcolm McLean <malcolm.arthur.mclean@gmail.com> writes:
> On 04/02/2024 12:24, David Brown wrote:
>> You /have/ taken a position, and you /have/ criticised Tim for his
>> post - by making this complaint.
>
> Other people have made that complaint. I'm not making it myself. But
> other people have said this, so it is therefore an issue.
>
> I want other people's views, and thnk you for giving yours.

You haven't given your views. You've just falsely claimed that it's
"also fair to say that it's the sort of post which gives the newgroup a
bad reputation".

I think you're trying to start an argument while pretending to be above
the fray. I don't know or care why.

If you have something to say about what was wrong with Tim's post,
you're free to say it. If not, please drop this -- and I suggest that
others not take the bait.

--
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
Working, but not speaking, for Medtronic
void Void(void) { Void(); } /* The recursive call of the void */

Re: Is this defined behavior?

<upp60g$3t0ts$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32530&group=comp.lang.c#32530

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: malcolm....@gmail.com (Malcolm McLean)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sun, 4 Feb 2024 23:18:39 +0000
Organization: A noiseless patient Spider
Lines: 56
Message-ID: <upp60g$3t0ts$1@dont-email.me>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me> <upnvla$3l4rm$1@dont-email.me>
<upo9ov$3mq1h$1@dont-email.me> <87v873lxvh.fsf@nosuchdomain.example.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sun, 4 Feb 2024 23:18:40 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="e8f1119ff9e922f8544fc637331bcbc5";
logging-data="4096956"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18sN/grbKw3sNIcdr9yAxUDAskc9KvUWXo="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:enUl7vjHWksS+j8PsxqTtcpmfZo=
In-Reply-To: <87v873lxvh.fsf@nosuchdomain.example.com>
Content-Language: en-GB
 by: Malcolm McLean - Sun, 4 Feb 2024 23:18 UTC

On 04/02/2024 21:31, Keith Thompson wrote:
> Malcolm McLean <malcolm.arthur.mclean@gmail.com> writes:
>> On 04/02/2024 12:24, David Brown wrote:
>>> You /have/ taken a position, and you /have/ criticised Tim for his
>>> post - by making this complaint.
>>
>> Other people have made that complaint. I'm not making it myself. But
>> other people have said this, so it is therefore an issue.
>>
>> I want other people's views, and thnk you for giving yours.
>
> You haven't given your views. You've just falsely claimed that it's
> "also fair to say that it's the sort of post which gives the newgroup a
> bad reputation".
>
> I think you're trying to start an argument while pretending to be above
> the fray. I don't know or care why.
>
> If you have something to say about what was wrong with Tim's post,
> you're free to say it. If not, please drop this -- and I suggest that
> others not take the bait.
>

I know that this is hard for you because you your psychological type.
But try to step think back and think what the reaction of a perfectly
normal person might be if, coming to the ng for the first time, that was
the first post he read. Then think what other people have said on
related subjects, and whether or not it is an objective reality,
independent of my opinion, whether or not that has been said.

However I am not myself personally either the hypothetical person coming
to the ng for the first time, nor the actual and indisputably existent
person who I am thinking of especially. I'm not the source of the
complaints.

But of course the complaint is that whilst the point made might be true
if you intepret the C stnadard in a literal sense, it is so unlikely
that anyone would implement such a compiler, or even think of doing so,
that it is abusrd. And so the ng does get a bad reputation. Objectively
and not just in my opinion. And whilst I am think especially of one
person, he's not saying something which is eccentric, or not level
headed. But I'm holding judgement on whether that is fair, or if it
matters. If other people hold us in contempt, is that a big issue, if we
enjoy discussing what we discuss?

Tim complained about other people's content, including but not
especially mine. So it's only fair if we now discuss his content.
However I don't want to complain about it. I don't see it as a simple
and open and shut issue like that. And I don't want to antagonise. I
think we've far too much antognistic behaviour going on at the moment
and its time to try to out a stop to it.
--
Check out Basic Algorithms and my other books:
/////
https://www.lulu.com/spotlight/bgy1mm

Re: Is this defined behavior?

<87o7cvlr6e.fsf@nosuchdomain.example.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32535&group=comp.lang.c#32535

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!news.niel.me!news.gegeweb.eu!gegeweb.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: Keith.S....@gmail.com (Keith Thompson)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sun, 04 Feb 2024 15:56:25 -0800
Organization: None to speak of
Lines: 11
Message-ID: <87o7cvlr6e.fsf@nosuchdomain.example.com>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me> <upnvla$3l4rm$1@dont-email.me>
<upo9ov$3mq1h$1@dont-email.me>
<87v873lxvh.fsf@nosuchdomain.example.com>
<upp60g$3t0ts$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain
Injection-Info: dont-email.me; posting-host="a411ba163e4887d967b7337e74fb5882";
logging-data="4116874"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/+I9K2Qt38vzA2r/pVy7qp"
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Cancel-Lock: sha1:EtT4nXM5z5w7Er+ohVNYid0BGhc=
sha1:pyD7XIEVyXI55B4E+yYQkoldMhc=
 by: Keith Thompson - Sun, 4 Feb 2024 23:56 UTC

Malcolm McLean <malcolm.arthur.mclean@gmail.com> writes:
[...]
> I know that this is hard for you because you your psychological type.
[...]

Go away.

--
Keith Thompson (The_Other_Keith) Keith.S.Thompson+u@gmail.com
Working, but not speaking, for Medtronic
void Void(void) { Void(); } /* The recursive call of the void */

Re: Is this defined behavior?

<upp8oa$tnh7$1@news.xmission.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32537&group=comp.lang.c#32537

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!xmission!nnrp.xmission!.POSTED.shell.xmission.com!not-for-mail
From: gaze...@shell.xmission.com (Kenny McCormack)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Mon, 5 Feb 2024 00:05:30 -0000 (UTC)
Organization: The official candy of the new Millennium
Message-ID: <upp8oa$tnh7$1@news.xmission.com>
References: <7h8vN.323427$xHn7.112429@fx14.iad> <87v873lxvh.fsf@nosuchdomain.example.com> <upp60g$3t0ts$1@dont-email.me> <87o7cvlr6e.fsf@nosuchdomain.example.com>
Injection-Date: Mon, 5 Feb 2024 00:05:30 -0000 (UTC)
Injection-Info: news.xmission.com; posting-host="shell.xmission.com:166.70.8.4";
logging-data="974375"; mail-complaints-to="abuse@xmission.com"
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
Originator: gazelle@shell.xmission.com (Kenny McCormack)
 by: Kenny McCormack - Mon, 5 Feb 2024 00:05 UTC

In article <87o7cvlr6e.fsf@nosuchdomain.example.com>,
Keith Thompson <Keith.S.Thompson+u@gmail.com> wrote:
>Malcolm McLean <malcolm.arthur.mclean@gmail.com> writes:
>[...]
>> I know that this is hard for you because you your psychological type.
>[...]
>
>Go away.

Very mature.

And about what we expect from your psychological type.

--
The randomly chosen signature file that would have appeared here is more than 4
lines long. As such, it violates one or more Usenet RFCs. In order to remain
in compliance with said RFCs, the actual sig can be found at the following URL:
http://user.xmission.com/~gazelle/Sigs/RightWingMedia

Re: Is this defined behavior?

<86sf2774vd.fsf@linuxsc.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32558&group=comp.lang.c#32558

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: tr.17...@z991.linuxsc.com (Tim Rentsch)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Sun, 04 Feb 2024 23:21:58 -0800
Organization: A noiseless patient Spider
Lines: 10
Message-ID: <86sf2774vd.fsf@linuxsc.com>
References: <7h8vN.323427$xHn7.112429@fx14.iad> <8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com> <uploc3$36iui$1@dont-email.me> <upnvla$3l4rm$1@dont-email.me> <upo9ov$3mq1h$1@dont-email.me> <87v873lxvh.fsf@nosuchdomain.example.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Injection-Info: dont-email.me; posting-host="6ed31e520c9542880dcef97983aa6edc";
logging-data="220108"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+1WtyHWcNlRIJYhvH5MqxyNsfssnFJhEM="
User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.4 (gnu/linux)
Cancel-Lock: sha1:wj6kbVWmP0T9aKhHzA7v4/vz84M=
sha1:o5jP67Uexfj0WYpVqtJnanolipI=
 by: Tim Rentsch - Mon, 5 Feb 2024 07:21 UTC

Keith Thompson <Keith.S.Thompson+u@gmail.com> writes:

>> [... some discussion regarding a posting of mine and alleged
>> reactions to it ...]
>
> If you have something to say about what was wrong with Tim's post,
> you're free to say it. If not, please drop this -- and I suggest
> that others not take the bait.

Thank you for this summary. I second your suggestion.

Re: Is this defined behavior?

<slrnus2ak7.rmg.please@loganrpi.rathbonelaw.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32600&group=comp.lang.c#32600

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!nntp.comgw.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ple...@replytogroup.com (Poprocks)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Mon, 5 Feb 2024 13:35:51 -0500
Organization: A noiseless patient Spider
Lines: 32
Message-ID: <slrnus2ak7.rmg.please@loganrpi.rathbonelaw.com>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me> <upnvla$3l4rm$1@dont-email.me>
<upo9ov$3mq1h$1@dont-email.me> <87v873lxvh.fsf@nosuchdomain.example.com>
<upp60g$3t0ts$1@dont-email.me>
Injection-Info: dont-email.me; posting-host="5ccc8692464fad6859989e2294b09054";
logging-data="440550"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18DHhqS0CRILyTUyZxFLyddTPOjjliIF5M="
User-Agent: slrn/1.0.3 (Linux)
Cancel-Lock: sha1:Dy8V/n+mMFyqvXdgHdya7i6Lqyo=
 by: Poprocks - Mon, 5 Feb 2024 18:35 UTC

On 2024-02-04, Malcolm McLean wrote:
> On 04/02/2024 21:31, Keith Thompson wrote:
[snip]
>> You haven't given your views. You've just falsely claimed that it's
>> "also fair to say that it's the sort of post which gives the newgroup a
>> bad reputation".
>>
>> I think you're trying to start an argument while pretending to be above
>> the fray. I don't know or care why.
>>
>> If you have something to say about what was wrong with Tim's post,
>> you're free to say it. If not, please drop this -- and I suggest that
>> others not take the bait.
>>
>
> I know that this is hard for you because you your psychological type.
> But try to step think back and think what the reaction of a perfectly
> normal person might be if, coming to the ng for the first time, that was
> the first post he read. Then think what other people have said on
> related subjects, and whether or not it is an objective reality,
> independent of my opinion, whether or not that has been said.
[snip]

I'm not exactly coming to this ng for the first time, but I've been a
casual occasional reader at best and am coming back to it after a long
while. The original parent thread was the first thread that looked
interesting to me, and I read it and gained some knowledge.

And then I spent 10 minutes of my life I'll never get back, reading this
bizarre, passive-aggressive flamebait.

*plonk*

Re: Is this defined behavior?

<uptb4d$t3jq$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32678&group=comp.lang.c#32678

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: malcolm....@gmail.com (Malcolm McLean)
Newsgroups: comp.lang.c
Subject: Re: Is this defined behavior?
Date: Tue, 6 Feb 2024 13:10:37 +0000
Organization: A noiseless patient Spider
Lines: 39
Message-ID: <uptb4d$t3jq$1@dont-email.me>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<8734uaq19p.fsf@nosuchdomain.example.com> <8634ua9bts.fsf@linuxsc.com>
<uploc3$36iui$1@dont-email.me> <upnvla$3l4rm$1@dont-email.me>
<upo9ov$3mq1h$1@dont-email.me> <87v873lxvh.fsf@nosuchdomain.example.com>
<upp60g$3t0ts$1@dont-email.me>
<slrnus2ak7.rmg.please@loganrpi.rathbonelaw.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Tue, 6 Feb 2024 13:10:37 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="121546b46b87f698889c92479e4b6ace";
logging-data="953978"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+iwaJmxaXi0m+8wiF1BMJNCpNHKRshcxU="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:q7K8icUn8fwXj06/gzzkdESpjA8=
In-Reply-To: <slrnus2ak7.rmg.please@loganrpi.rathbonelaw.com>
Content-Language: en-GB
 by: Malcolm McLean - Tue, 6 Feb 2024 13:10 UTC

On 05/02/2024 18:35, Poprocks wrote:
> On 2024-02-04, Malcolm McLean wrote:
>> On 04/02/2024 21:31, Keith Thompson wrote:
> [snip]
>>> You haven't given your views. You've just falsely claimed that it's
>>> "also fair to say that it's the sort of post which gives the newgroup a
>>> bad reputation".
>>>
>>> I think you're trying to start an argument while pretending to be above
>>> the fray. I don't know or care why.
>>>
>>> If you have something to say about what was wrong with Tim's post,
>>> you're free to say it. If not, please drop this -- and I suggest that
>>> others not take the bait.
>>>
>>
>> I know that this is hard for you because you your psychological type.
>> But try to step think back and think what the reaction of a perfectly
>> normal person might be if, coming to the ng for the first time, that was
>> the first post he read. Then think what other people have said on
>> related subjects, and whether or not it is an objective reality,
>> independent of my opinion, whether or not that has been said.
> [snip]
>
> I'm not exactly coming to this ng for the first time, but I've been a
> casual occasional reader at best and am coming back to it after a long
> while. The original parent thread was the first thread that looked
> interesting to me, and I read it and gained some knowledge.
>
> And then I spent 10 minutes of my life I'll never get back, reading this
> bizarre, passive-aggressive flamebait.
>
> *plonk*

I should point out that meta posts about the newsgroup itself are topical.
--
Check out Basic Algorithms and my other books:
https://www.lulu.com/spotlight/bgy1mm

Is this sane behavior? (Was: Is this defined behavior?)

<upth33$vphs$1@news.xmission.com>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32682&group=comp.lang.c#32682

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!weretis.net!feeder6.news.weretis.net!xmission!nnrp.xmission!.POSTED.shell.xmission.com!not-for-mail
From: gaze...@shell.xmission.com (Kenny McCormack)
Newsgroups: comp.lang.c
Subject: Is this sane behavior? (Was: Is this defined behavior?)
Date: Tue, 6 Feb 2024 14:52:19 -0000 (UTC)
Organization: The official candy of the new Millennium
Message-ID: <upth33$vphs$1@news.xmission.com>
References: <7h8vN.323427$xHn7.112429@fx14.iad> <87v873lxvh.fsf@nosuchdomain.example.com> <upp60g$3t0ts$1@dont-email.me> <slrnus2ak7.rmg.please@loganrpi.rathbonelaw.com>
Injection-Date: Tue, 6 Feb 2024 14:52:19 -0000 (UTC)
Injection-Info: news.xmission.com; posting-host="shell.xmission.com:166.70.8.4";
logging-data="1041980"; mail-complaints-to="abuse@xmission.com"
X-Newsreader: trn 4.0-test77 (Sep 1, 2010)
Originator: gazelle@shell.xmission.com (Kenny McCormack)
 by: Kenny McCormack - Tue, 6 Feb 2024 14:52 UTC

In article <slrnus2ak7.rmg.please@loganrpi.rathbonelaw.com>,
Poprocks <please@replytogroup.com> whined:
....
>And then I spent 10 minutes of my life I'll never get back, reading this
>bizarre, passive-aggressive flamebait.

And then you spent 20 minutes of your life you'll never get back, posting
the above bizarre, passive-aggressive flamebait.

--
'Islamaphobia' is a term created by fascists and used by cowards to manipulate morons.

- Author unknown, quoted by Sam Harris -

Re: Is this sane behavior? (Was: Is this defined behavior?)

<uptkg9$umvp$1@dont-email.me>

  copy mid

https://www.novabbs.com/devel/article-flat.php?id=32683&group=comp.lang.c#32683

  copy link   Newsgroups: comp.lang.c
Path: i2pn2.org!i2pn.org!news.furie.org.uk!usenet.goja.nl.eu.org!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: malcolm....@gmail.com (Malcolm McLean)
Newsgroups: comp.lang.c
Subject: Re: Is this sane behavior? (Was: Is this defined behavior?)
Date: Tue, 6 Feb 2024 15:50:33 +0000
Organization: A noiseless patient Spider
Lines: 16
Message-ID: <uptkg9$umvp$1@dont-email.me>
References: <7h8vN.323427$xHn7.112429@fx14.iad>
<87v873lxvh.fsf@nosuchdomain.example.com> <upp60g$3t0ts$1@dont-email.me>
<slrnus2ak7.rmg.please@loganrpi.rathbonelaw.com>
<upth33$vphs$1@news.xmission.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Tue, 6 Feb 2024 15:50:33 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="121546b46b87f698889c92479e4b6ace";
logging-data="1006585"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/DzzARyRuVZ0puKUc4iHJW+gcAnFqcjOs="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:LbBlX8R1S41dpBzLoja3JOR0muw=
In-Reply-To: <upth33$vphs$1@news.xmission.com>
Content-Language: en-GB
 by: Malcolm McLean - Tue, 6 Feb 2024 15:50 UTC

On 06/02/2024 14:52, Kenny McCormack wrote:
> In article <slrnus2ak7.rmg.please@loganrpi.rathbonelaw.com>,
> Poprocks <please@replytogroup.com> whined:
> ...
>> And then I spent 10 minutes of my life I'll never get back, reading this
>> bizarre, passive-aggressive flamebait.
>
> And then you spent 20 minutes of your life you'll never get back, posting
> the above bizarre, passive-aggressive flamebait.
>
It's self refuting. And the use of technical pyschiatric terms they
don't really understand as an insult is very trademark.
--
Check out Basic Algorithms and my other books:
https://www.lulu.com/spotlight/bgy1mm

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor