Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

REST: P: Linus Torvalds S: Buried alive in email -- from /usr/src/linux/MAINTAINERS


devel / comp.lang.xharbour / Unused symbol overhead

SubjectAuthor
* Unused symbol overheadEnrico Maria Giordano
`* Re: Unused symbol overheadRon Pinkas
 `- Re: Unused symbol overheadEnrico Maria Giordano

1
Unused symbol overhead

<um6ega$21gu0$1@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=18067&group=comp.lang.xharbour#18067

  copy link   Newsgroups: comp.lang.xharbour
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: e.m.giordano@emagsoftware.it (Enrico Maria Giordano)
Newsgroups: comp.lang.xharbour
Subject: Unused symbol overhead
Date: Sat, 23 Dec 2023 11:58:19 +0100
Organization: A noiseless patient Spider
Lines: 21
Message-ID: <um6ega$21gu0$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sat, 23 Dec 2023 10:58:18 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="030ef378ff3c28accebbbda6b37da230";
logging-data="2147264"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18JseWPZkGpovlh0KlezSgw"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:8T/q6HSpJIlKnL8X+M8FP2dKjOI=
Content-Language: it
 by: Enrico Maria Giordan - Sat, 23 Dec 2023 10:58 UTC

I noticed that this syntax

FUNCTION MAIN()

LOCAL n := 123

( n ) // <-- THIS

RETURN NIL

has an overhead (at least in size, try to put many of those ( n )) with
xHarbour but not with Harbour. Could we removed this overhead with
xHarbour too?

--
Enrico Maria Giordano

http://www.emagsoftware.it
http://www.emagsoftware.it/emgmusic
http://www.emagsoftware.it/spectrum
http://www.emagsoftware.it/tbosg

Re: Unused symbol overhead

<um7vuq$29d1u$3@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=18090&group=comp.lang.xharbour#18090

  copy link   Newsgroups: comp.lang.xharbour
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: ron@ronpinkas.com (Ron Pinkas)
Newsgroups: comp.lang.xharbour
Subject: Re: Unused symbol overhead
Date: Sat, 23 Dec 2023 20:02:17 -0500
Organization: A noiseless patient Spider
Lines: 18
Message-ID: <um7vuq$29d1u$3@dont-email.me>
References: <um6ega$21gu0$1@dont-email.me>
MIME-Version: 1.0
Injection-Date: Sun, 24 Dec 2023 01:02:18 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="daacb768512b8ac26b095e62fd3ae8cd";
logging-data="2405438"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19VN1QLZNOr6nSHll0VSoCJn8NnykcSfB4="
User-Agent: flnews/1.2.0 (for Darwin)
Cancel-Lock: sha1:AMOE+cvSxxwf3P9Uvq85XuEhVyU=
 by: Ron Pinkas - Sun, 24 Dec 2023 01:02 UTC

Enrico Maria Giordano wrote:
>
> I noticed that this syntax
>
> FUNCTION MAIN()
>
> LOCAL n := 123
>
> ( n ) // <-- THIS
>
> RETURN NIL
>
> has an overhead (at least in size, try to put many of those ( n )) with
> xHarbour but not with Harbour. Could we removed this overhead with
> xHarbour too?
>

Try after: 2023-12-23 19:48 UTC-0500 Ron Pinkas <ronpinkas/AT/gmail/com>

Re: Unused symbol overhead

<um8s71$2ghn6$3@dont-email.me>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=18097&group=comp.lang.xharbour#18097

  copy link   Newsgroups: comp.lang.xharbour
Path: i2pn2.org!i2pn.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: e.m.giordano@emagsoftware.it (Enrico Maria Giordano)
Newsgroups: comp.lang.xharbour
Subject: Re: Unused symbol overhead
Date: Sun, 24 Dec 2023 10:04:34 +0100
Organization: A noiseless patient Spider
Lines: 30
Message-ID: <um8s71$2ghn6$3@dont-email.me>
References: <um6ega$21gu0$1@dont-email.me> <um7vuq$29d1u$3@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Sun, 24 Dec 2023 09:04:33 -0000 (UTC)
Injection-Info: dont-email.me; posting-host="c0896a8cdae69b209d5d847b71b7eba4";
logging-data="2639590"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+otFm2q8xhZ4xLbUJOxAGF"
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:fNZMtJWDV1Q19T5OzyPlp6IihFo=
Content-Language: it
In-Reply-To: <um7vuq$29d1u$3@dont-email.me>
 by: Enrico Maria Giordan - Sun, 24 Dec 2023 09:04 UTC

Il 24/12/2023 02:02, Ron Pinkas ha scritto:

>> I noticed that this syntax
>>
>> FUNCTION MAIN()
>>
>> LOCAL n := 123
>>
>> ( n ) // <-- THIS
>>
>> RETURN NIL
>>
>> has an overhead (at least in size, try to put many of those ( n )) with
>> xHarbour but not with Harbour. Could we removed this overhead with
>> xHarbour too?
>
> Try after: 2023-12-23 19:48 UTC-0500 Ron Pinkas <ronpinkas/AT/gmail/com>

Great, thank you! I can't try it now but I will as soon as possible.

--
Enrico Maria Giordano

http://www.emagsoftware.it
http://www.emagsoftware.it/emgmusic
http://www.emagsoftware.it/spectrum
http://www.emagsoftware.it/tbosg

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor