public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h
@ 2022-05-14 23:05 cquike at arcor dot de
  2022-05-14 23:05 ` [Bug libc/29147] getconf: " cquike at arcor dot de
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: cquike at arcor dot de @ 2022-05-14 23:05 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29147

            Bug ID: 29147
           Summary: Wrong values for symbolic constants defined in
                    limits.h
           Product: glibc
           Version: 2.34
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libc
          Assignee: unassigned at sourceware dot org
          Reporter: cquike at arcor dot de
                CC: drepper.fsp at gmail dot com
  Target Milestone: ---

Created attachment 14102
  --> https://sourceware.org/bugzilla/attachment.cgi?id=14102&action=edit
Potential patch

I am trying to understand the output of some of the values in getconf and I
came to the conclusion that a number of symbolic constants defined in limits.h
are not properly printed by getconf utility.

According to POSIX.1-2018
(https://pubs.opengroup.org/onlinepubs/9699919799/utilities/getconf.html), the
getconf utility shall print "the symbolic constants listed under the headings
``Maximum Values'' and ``Minimum Values'' in the description of the <limits.h>
header". Quoting the reference book "Advanced Programming in the UNIX
environment": "Those minimum values do not change from one system to another.
They specify the most restrictive values for these features".

I realized first with the _POSIX_PIPE_BUF constant. According to POSIX.1-2018
(https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/limits.h.html) the
value must be 512. However, on a Fedora 35 machine:

# getconf -a | grep  _POSIX_PIPE_BUF
_POSIX_PIPE_BUF                    4096

Looking at the sources it seems that _POSIX_PIPE_BUF (the minimum value for
_any_ POSIX implementation) is using pathconf(_PC_PIPE_BUF, ...) which is the
value for _this_ specific implementation.

I have jot down a potential patch that fixes the problem (albeit only for
_POSIX_PIPE_BUF, not for the rest of the constants in limits.h) and have
attached it here.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug libc/29147] getconf: Wrong values for symbolic constants defined in limits.h
  2022-05-14 23:05 [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h cquike at arcor dot de
@ 2022-05-14 23:05 ` cquike at arcor dot de
  2022-05-14 23:12 ` cquike at arcor dot de
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: cquike at arcor dot de @ 2022-05-14 23:05 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29147

cquike at arcor dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|Wrong values for symbolic   |getconf: Wrong values for
                   |constants defined in        |symbolic constants defined
                   |limits.h                    |in limits.h

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug libc/29147] getconf: Wrong values for symbolic constants defined in limits.h
  2022-05-14 23:05 [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h cquike at arcor dot de
  2022-05-14 23:05 ` [Bug libc/29147] getconf: " cquike at arcor dot de
@ 2022-05-14 23:12 ` cquike at arcor dot de
  2022-05-18 19:47 ` adhemerval.zanella at linaro dot org
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: cquike at arcor dot de @ 2022-05-14 23:12 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29147

--- Comment #1 from cquike at arcor dot de ---
BTW, the patch is not to be taken verbatim. Since for those variables there is
no "call" to get the value, some of the code should be rewritten in order not
to be confusing in terms of variable names. A quick possible solution is to
change all appearances of "call" by "source" (sed -i 's/call/source/'
getconf.c).

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug libc/29147] getconf: Wrong values for symbolic constants defined in limits.h
  2022-05-14 23:05 [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h cquike at arcor dot de
  2022-05-14 23:05 ` [Bug libc/29147] getconf: " cquike at arcor dot de
  2022-05-14 23:12 ` cquike at arcor dot de
@ 2022-05-18 19:47 ` adhemerval.zanella at linaro dot org
  2022-05-23 20:02 ` cquike at arcor dot de
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: adhemerval.zanella at linaro dot org @ 2022-05-18 19:47 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29147

Adhemerval Zanella <adhemerval.zanella at linaro dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |adhemerval.zanella at linaro dot o
                   |                            |rg

--- Comment #2 from Adhemerval Zanella <adhemerval.zanella at linaro dot org> ---
POSIX defines the values exported on limits.h, getconf is a glibc provided
program. And glibc does not provide proper getconf documentation, although
man-pages clearly states that the obtained values are done either through
sysconf or pathconf (which always returns the implementation values).

So I am not sure if getconf should follow what limits.h defines instead of what
implementation sets, changing will be a semantic change that might break some
assumptions (which is always tricky).

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug libc/29147] getconf: Wrong values for symbolic constants defined in limits.h
  2022-05-14 23:05 [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h cquike at arcor dot de
                   ` (2 preceding siblings ...)
  2022-05-18 19:47 ` adhemerval.zanella at linaro dot org
@ 2022-05-23 20:02 ` cquike at arcor dot de
  2022-05-23 20:47 ` adhemerval.zanella at linaro dot org
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: cquike at arcor dot de @ 2022-05-23 20:02 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29147

--- Comment #3 from cquike at arcor dot de ---
Thanks Adhemerval for your comments.

I agree that the documentation of getconf is not very clear on what the tool is
supposed to deliver.

So I see three possible options for this isse:

1. Keep the status quo. The current GNU getconf is not POSIX compliant with the
command of the same name (although to be fair the documentation doesn't claim
it is). The problem I see is that according to the documentation (man getconf)
the value returned by getconf corresponds to a system configuration var as
defined by pathconfig. However, pathconfig in Linux does not define
_POSIX_PIPE_BUF.  It is simply not possible to get the value of _POSIX_PIPE_BUF
using pathconfig. Interestingly, the Linux pathconfig manpage does actually
refer to _POSIX_PIPE_BUF as the minimum value that can be used for a pipe
buffer, clearly distinguishing it from _PC_PIPE_BUF, which is the value that
applications might want to use get "more liberal values". So in that sense, at
least under Linux, the behaviour of GNU version of getconf is inconsistent with
the documentation (man getconf, man pathconfig).

2. Change the behaviour to follow the POSIX standard. As you pointed out this
might be a bit tricky since it could break expectations from existing
applications. However, it could be argued, that applications that request the
value of _POSIX_PIPE_BUF do really care about getting the POSIX behaviour. They
are basically requesting the minimum value of the pipe buffer for _any_ POSIX
compliant implementation. So in that sense that variable is quite related to
POSIX, otherwise there is no much point on asking for it rather than
_PC_PIPE_BUF. In the case this change takes place, the documentation should
clearly state the differences with previous behaviour under the section BUGS.

3. Similar to other GNU utilities, change the behaviour to either 1. or 2.
depending on POSIXLY_CORRECT environmental variable being defined or not.

Let me know your thoughts on that.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug libc/29147] getconf: Wrong values for symbolic constants defined in limits.h
  2022-05-14 23:05 [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h cquike at arcor dot de
                   ` (3 preceding siblings ...)
  2022-05-23 20:02 ` cquike at arcor dot de
@ 2022-05-23 20:47 ` adhemerval.zanella at linaro dot org
  2022-05-24  0:57 ` cquike at arcor dot de
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: adhemerval.zanella at linaro dot org @ 2022-05-23 20:47 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29147

--- Comment #4 from Adhemerval Zanella <adhemerval.zanella at linaro dot org> ---
(In reply to cquike from comment #3)
> Thanks Adhemerval for your comments.
> 
> I agree that the documentation of getconf is not very clear on what the tool
> is supposed to deliver.
> 
> So I see three possible options for this isse:
> 
> 1. Keep the status quo. The current GNU getconf is not POSIX compliant with
> the command of the same name (although to be fair the documentation doesn't
> claim it is). The problem I see is that according to the documentation (man
> getconf) the value returned by getconf corresponds to a system configuration
> var as defined by pathconfig. However, pathconfig in Linux does not define
> _POSIX_PIPE_BUF.  It is simply not possible to get the value of
> _POSIX_PIPE_BUF using pathconfig. Interestingly, the Linux pathconfig
> manpage does actually refer to _POSIX_PIPE_BUF as the minimum value that can
> be used for a pipe buffer, clearly distinguishing it from _PC_PIPE_BUF,
> which is the value that applications might want to use get "more liberal
> values". So in that sense, at least under Linux, the behaviour of GNU
> version of getconf is inconsistent with the documentation (man getconf, man
> pathconfig).

Keep in mind that man-pages is not the canonical documentation.

POSIX standard also defines that for getconf each configuration variable 
shall be determined as if it were obtained by calling the function from
which it is defined to be available (either fpathconf, sysconf, or confstr)
[1].

And for fpathconf, POSIX only defines a handfull of symbolic constants an 
implementation should support (which _POSIX_PIPE_BUF is not listed).  Also 
for _POSIX_PIPE_BUF, it means the 'Maximum number of bytes that is guaranteed 
to be atomic when writing to a pipe'.

So I do not agree that glibc getconf is not POSIX compliant with current POSIX 
requirements, neither that returning a value different than _PC_PIPE_BUF for
_POSIX_PIPE_BUF makes much sense, since it is the system obtained value the one 
that actually matters.

> 
> 2. Change the behaviour to follow the POSIX standard. As you pointed out
> this might be a bit tricky since it could break expectations from existing
> applications. However, it could be argued, that applications that request
> the value of _POSIX_PIPE_BUF do really care about getting the POSIX
> behaviour. They are basically requesting the minimum value of the pipe
> buffer for _any_ POSIX compliant implementation. So in that sense that
> variable is quite related to POSIX, otherwise there is no much point on
> asking for it rather than _PC_PIPE_BUF. In the case this change takes place,
> the documentation should clearly state the differences with previous
> behaviour under the section BUGS.

This does not make sense, if user issues 'getconf _POSIX_PIPE_BUF <path>'
and the system defined a minimum value that is larger than what POSIX defines
as the minimum value; the implementation does follow POSIX since
'conforming implementation shall provide a value at least this large or 
shall have no limit' [1].

I am still not really convinced that getconf should return any value defined
in limits.h, since for the users perspective what really matters is the 
implementation-defined one and whether it supports the minimal POSIX values
or not (for the limits.h a conforming implementation should support the
minimum set anyway).

> 
> 3. Similar to other GNU utilities, change the behaviour to either 1. or 2.
> depending on POSIXLY_CORRECT environmental variable being defined or not.

And I don't think this will make getconf more POSIX compliant, since POSIX
does not state POSIXLY_CORRECT as an affecting environment variable. 

> 
> Let me know your thoughts on that.


[1] https://pubs.opengroup.org/onlinepubs/9699919799/utilities/getconf.html
[2] https://pubs.opengroup.org/onlinepubs/9699919799/functions/fpathconf.html
[3] https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/limits.h.html

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug libc/29147] getconf: Wrong values for symbolic constants defined in limits.h
  2022-05-14 23:05 [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h cquike at arcor dot de
                   ` (4 preceding siblings ...)
  2022-05-23 20:47 ` adhemerval.zanella at linaro dot org
@ 2022-05-24  0:57 ` cquike at arcor dot de
  2022-05-24  7:49 ` schwab@linux-m68k.org
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: cquike at arcor dot de @ 2022-05-24  0:57 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29147

--- Comment #5 from cquike at arcor dot de ---

> POSIX standard also defines that for getconf each configuration variable 
> shall be determined as if it were obtained by calling the function from
> which it is defined to be available (either fpathconf, sysconf, or confstr)
> [1].
> 
> And for fpathconf, POSIX only defines a handfull of symbolic constants an 
> implementation should support (which _POSIX_PIPE_BUF is not listed).  Also 
> for _POSIX_PIPE_BUF, it means the 'Maximum number of bytes that is
> guaranteed 
> to be atomic when writing to a pipe'.
> 

Maybe I am interpreting it wrongly, but I see that getconf provides variables
that are defined via fpathconf, sysconf, confstr _or_ limits.h. The third
bullet under "system_var" says literally "The names of the symbolic constants
listed under the headings ``Maximum Values'' and ``Minimum Values'' in the
description of the <limits.h> header" ([1]). And indeed _POSIX_PIPE_BUF is
listed under "Minimum values" in the description of limits.h ([3]) and not
under fpathconf, as you correctly mention ([2]).

In fact, consider the output of this small program:

#include <limits.h>
#include <stdio.h>

int main()
{
  printf("_POSIX_PIPE_BUF: %d\n", _POSIX_PIPE_BUF);
}

$ ./a.out
_POSIX_PIPE_BUF: 512

and the output of getconf:

$ getconf _POSIX_PIPE_BUF /
4096

which are, in my opinion, in contradiction. By the way, it also highlights yet
another problem with the current implementation: for _POSIX_PIPE_BUF it
shouldn´t be needed to provide a path, since it is a symbolic constant.


> for the users perspective what really matters is the 
> implementation-defined

For most applications I agree with you. That means that POSIX conformant
applications applications are most interested on querying fpathconf(fd,
_PC_PIPE_BUF) or the equivalent getconf PIPE_BUF /path . However _strictly_
conformant applications ([4]) should not rely on the implementation supporting
a limit larger than _POSIX_PIPE_BUF. It is for those applications where this
constant might be useful.

> And I don't think this will make getconf more POSIX compliant, since POSIX
> does not state POSIXLY_CORRECT as an affecting environment variable. 

Yes, you are right.

[1] https://pubs.opengroup.org/onlinepubs/9699919799/utilities/getconf.html
[2] https://pubs.opengroup.org/onlinepubs/9699919799/functions/fpathconf.html
[3] https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/limits.h.html
[4]
https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap02.html#tag_02_02_01

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug libc/29147] getconf: Wrong values for symbolic constants defined in limits.h
  2022-05-14 23:05 [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h cquike at arcor dot de
                   ` (5 preceding siblings ...)
  2022-05-24  0:57 ` cquike at arcor dot de
@ 2022-05-24  7:49 ` schwab@linux-m68k.org
  2022-05-26 17:22 ` adhemerval.zanella at linaro dot org
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: schwab@linux-m68k.org @ 2022-05-24  7:49 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29147

--- Comment #6 from Andreas Schwab <schwab@linux-m68k.org> ---
> And I don't think this will make getconf more POSIX compliant, since POSIX
> does not state POSIXLY_CORRECT as an affecting environment variable. 

This is irrelevant, without POSIXLY_CORRECT a GNU system is not POSIX compliant
on purpose.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug libc/29147] getconf: Wrong values for symbolic constants defined in limits.h
  2022-05-14 23:05 [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h cquike at arcor dot de
                   ` (6 preceding siblings ...)
  2022-05-24  7:49 ` schwab@linux-m68k.org
@ 2022-05-26 17:22 ` adhemerval.zanella at linaro dot org
  2022-05-27 14:31 ` adhemerval.zanella at linaro dot org
  2022-07-29 22:10 ` cquike at arcor dot de
  9 siblings, 0 replies; 11+ messages in thread
From: adhemerval.zanella at linaro dot org @ 2022-05-26 17:22 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29147

--- Comment #7 from Adhemerval Zanella <adhemerval.zanella at linaro dot org> ---
(In reply to cquike from comment #5)
> > POSIX standard also defines that for getconf each configuration variable 
> > shall be determined as if it were obtained by calling the function from
> > which it is defined to be available (either fpathconf, sysconf, or confstr)
> > [1].
> > 
> > And for fpathconf, POSIX only defines a handfull of symbolic constants an 
> > implementation should support (which _POSIX_PIPE_BUF is not listed).  Also 
> > for _POSIX_PIPE_BUF, it means the 'Maximum number of bytes that is
> > guaranteed 
> > to be atomic when writing to a pipe'.
> > 
> 
> Maybe I am interpreting it wrongly, but I see that getconf provides
> variables that are defined via fpathconf, sysconf, confstr _or_ limits.h.
> The third bullet under "system_var" says literally "The names of the
> symbolic constants listed under the headings ``Maximum Values'' and
> ``Minimum Values'' in the description of the <limits.h> header" ([1]). And
> indeed _POSIX_PIPE_BUF is listed under "Minimum values" in the description
> of limits.h ([3]) and not under fpathconf, as you correctly mention ([2]).

Another issue is POSIX is not clear how the 'Maximum' and 'Minimum' values
should
be obtained, but getting the POSIX defined values seems rational.

> 
> In fact, consider the output of this small program:
> 
> #include <limits.h>
> #include <stdio.h>
> 
> int main()
> {
>   printf("_POSIX_PIPE_BUF: %d\n", _POSIX_PIPE_BUF);
> }
> 
> $ ./a.out
> _POSIX_PIPE_BUF: 512
> 
> and the output of getconf:
> 
> $ getconf _POSIX_PIPE_BUF /
> 4096
> 
> which are, in my opinion, in contradiction. By the way, it also highlights
> yet another problem with the current implementation: for _POSIX_PIPE_BUF it
> shouldn´t be needed to provide a path, since it is a symbolic constant.
> 
> 
> > for the users perspective what really matters is the 
> > implementation-defined
> 
> For most applications I agree with you. That means that POSIX conformant
> applications applications are most interested on querying fpathconf(fd,
> _PC_PIPE_BUF) or the equivalent getconf PIPE_BUF /path . However _strictly_
> conformant applications ([4]) should not rely on the implementation
> supporting a limit larger than _POSIX_PIPE_BUF. It is for those applications
> where this constant might be useful.

Right, it seems that other system do return the limits.h value (Solaris 11, AIX
7.2,
and MacOSX) so it seems that it would be good to have the same behavior.

> 
> > And I don't think this will make getconf more POSIX compliant, since POSIX
> > does not state POSIXLY_CORRECT as an affecting environment variable. 
> 
> Yes, you are right.
> 
> [1] https://pubs.opengroup.org/onlinepubs/9699919799/utilities/getconf.html
> [2] https://pubs.opengroup.org/onlinepubs/9699919799/functions/fpathconf.html
> [3] https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/limits.h.html
> [4]
> https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap02.
> html#tag_02_02_01

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug libc/29147] getconf: Wrong values for symbolic constants defined in limits.h
  2022-05-14 23:05 [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h cquike at arcor dot de
                   ` (7 preceding siblings ...)
  2022-05-26 17:22 ` adhemerval.zanella at linaro dot org
@ 2022-05-27 14:31 ` adhemerval.zanella at linaro dot org
  2022-07-29 22:10 ` cquike at arcor dot de
  9 siblings, 0 replies; 11+ messages in thread
From: adhemerval.zanella at linaro dot org @ 2022-05-27 14:31 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29147

Adhemerval Zanella <adhemerval.zanella at linaro dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|unassigned at sourceware dot org   |adhemerval.zanella at linaro dot o
                   |                            |rg

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [Bug libc/29147] getconf: Wrong values for symbolic constants defined in limits.h
  2022-05-14 23:05 [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h cquike at arcor dot de
                   ` (8 preceding siblings ...)
  2022-05-27 14:31 ` adhemerval.zanella at linaro dot org
@ 2022-07-29 22:10 ` cquike at arcor dot de
  9 siblings, 0 replies; 11+ messages in thread
From: cquike at arcor dot de @ 2022-07-29 22:10 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=29147

--- Comment #8 from cquike at arcor dot de ---
Thank you for posting the patch to libc-alpha, which I have seen now. Do you
know if there is a chance of this to be merged?
Thank you!

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2022-07-29 22:10 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-14 23:05 [Bug libc/29147] New: Wrong values for symbolic constants defined in limits.h cquike at arcor dot de
2022-05-14 23:05 ` [Bug libc/29147] getconf: " cquike at arcor dot de
2022-05-14 23:12 ` cquike at arcor dot de
2022-05-18 19:47 ` adhemerval.zanella at linaro dot org
2022-05-23 20:02 ` cquike at arcor dot de
2022-05-23 20:47 ` adhemerval.zanella at linaro dot org
2022-05-24  0:57 ` cquike at arcor dot de
2022-05-24  7:49 ` schwab@linux-m68k.org
2022-05-26 17:22 ` adhemerval.zanella at linaro dot org
2022-05-27 14:31 ` adhemerval.zanella at linaro dot org
2022-07-29 22:10 ` cquike at arcor dot de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).