Minutes of the 19 February 2015 Teleconference Austin-696 Page 1 of 1
Submitted by Andrew Josey, The Open Group. 20 February 2015
Attendees:
Mark Ziegast, SHware Systems
Nick Stoughton, USENIX, ISO/IEC JTC 1/SC 22 OR
Joerg Schilling, FOKUS Fraunhofer
Geoff Clare, The Open Group
David Clissold, IBM
Martin Rehak, Oracle, The Open Group OR
Eric Blake, Red Hat
Don Cragun, IEEE OR
Andrew Josey, The Open Group
Apologies:
Richard Hansen, BBN
* General news
PASC PAR approval.
Action: Nick took call for an email ballot of the PASC SEC (completed after the meeting).
* Outstanding actions
+Bug 0000251: Forbid newline, or even bytes 1 through 31 (inclusive), in filenames OPEN
http://austingroupbugs.net/view.php?id=251
Don has an action to produce a proposal.
+Bug 0000561: NUL-termination of sun_path in Unix sockets OPEN
http://austingroupbugs.net/view.php?id=561
Eric has an action to update the proposal.
+Bug 0000573: Please add '+' to the portable filename character set OPEN
http://austingroupbugs.net/view.php?id=573
Joerg has an action to prepare a proposed change.
+Bug 0000592: consistent use of struct timespec OPEN
http://austingroupbugs.net/view.php?id=592
Jim had provided additional information in bugnote 1627.
This was discussed and Jim took an action to provide further information.
+Bug 0000598: OH shading and new interfaces OPEN
http://austingroupbugs.net/view.php?id=598
Eric has an action to propose a new solution with self-contained headers.
+Bug 0000517: EBNF support OPEN
http://austingroupbugs.net/view.php?id=517
Action on Joerg to look at this.
+Bug 0000633: SIGEV_THREAD delivery renders many signal interfaces unsafe
OPEN
http://austingroupbugs.net/view.php?id=633
We noted that feedback has settled down on the mailing list, and
will discuss next session.
+Bug 0000657: Conditions under which fmemopen() write a NUL to the buffer
are insufficiently specified OPEN
http://austingroupbugs.net/view.php?id=657
Eric has an action to propose wording to clarify the behavior for
fmemopen(), and also to contact the glibc developers to get their
feedback.
+Bug 0000658: Undefined/unspecified behavior clauses in description of
open have race conditions OPEN
http://austingroupbugs.net/view.php?id=658
It was noted that there is some overlap with changes in TC1. Eric took an
action to update the proposal to resolve the overlaps appropriately.
+Bug 0000615: pthread_setcancelstate should be async-signal-safe OPEN
http://austingroupbugs.net/view.php?id=615
We now have reports on AIX and Apple. Jim to report back on whether
pthread_cancelstate() is async-signal-safe on Solaris. Andrew to ask
HP whether pthread_cancelstate() is async-signal-safe on HP-UX.
+Bug 0000672: Necessary step(s) to synchronize filename operations on disk
OPEN
http://austingroupbugs.net/view.php?id=672
Geoff has a new proposed resolution in note 1618. Decided to solicit input
from FS developers. Eric to go to Linux, David to AIX and Jim to Solaris.
Jim has completed his action (see bugnote 1691).
Andrew should chase HP and Apple for input.
+Bug 0000663: Specification of str[n]casecmp is ambiguous reopened
http://austingroupbugs.net/view.php?id=663
Action on David to follow up with the IBM developers about the EBCDIC
collation sequence.
Bug 696 either NAME_MAX shouldn't be optional, or readdir_r() needs clarification
http://www.austingroupbugs.net/view.php?id=696
Don has an action to propose a resolution.
Bug 0000721: Internal storage vs static storage OPEN
http://austingroupbugs.net/view.php?id=721
This item is still open.
Bug 0000375: Extend test/[...] conditionals: ==, <, >, -nt, -ot, -ef OPEN
http://austingroupbugs.net/view.php?id=375
This is still left open due to discussions pending on the reflector.
Bug 0000789: Add set -o pipefail OPEN
http://austingroupbugs.net/view.php?id=789
* Current Business
Bug 0000887: printf and other functions appear many times in search results
http://austingroupbugs.net/view.php?id=887
Action: Andrew to propose a response.
Bug 0000888: Clarify expansion of '@' and '*' special parameters Accepted
http://austingroupbugs.net/view.php?id=888
This item is tagged for TC2-2008.
An interpretation is required.
Interpretation response:
The standard is unclear on this issue, and no conformance distinction
can be made between alternative implementations based on this. This
is being referred to the sponsor.
Rationale:
Remove the ambiguity.
Notes to the Editor (not part of this interpretation):
Make the changes suggested in the Desired Action.
Action: Andrew to flush out the interpretations queue.
Bug 0000890: Here-document in a command string (sh -c) Accepted
http://austingroupbugs.net/view.php?id=890
This item is tagged for TC2-2008.
Bug 0000892: You forget atoll Accepted as Marked
http://austingroupbugs.net/view.php?id=892
This item is tagged for TC2-2008.
On page 618 line 21108 section atol(), change:
long atol(const char *str);
to:
long atol(const char *nptr);
On page 618 line 21114 section atol(), change:
The call atol(str) shall be equivalent to:
strtol(str, (char **)NULL, 10)
to:
Except as noted below, the call atol(nptr) shall be equivalent to:
strtol(nptr, (char **)NULL, 10)
On page 618 line 21116 section atol(), change:
The call to atoll(nptr) shall be equivalent to:
to:
Except as noted below, the call to atoll(nptr) shall be equivalent to:
On page 618 line 21118 section atol(), change:
except that the handling of errors may differ.
to:
The handling of errors may differ.
On page 618 line 21127 section atol(), change:
The atol( ) function is subsumed by strtol() but is retained
because it is used extensively in existing code. If the number
is not known to be in range, strtol() should be used because
atol() is not required to perform any error checking.
to:
If the number is not known to be in range, strtol() or strtoll()
should be used because atol() and atoll() are not required to
perform any error checking.
On page 2059 line 65800 section strtol(), change:
long strtol(const char *restrict str, char **restrict endptr, int base);
long long strtoll(const char *restrict str, char **restrict endptr,
int base)
to:
long strtol(const char *restrict nptr, char **restrict endptr, int base);
long long strtoll(const char *restrict nptr, char **restrict endptr,
int base)
On page 2059 line 65807 section strtol(), change:
These functions shall convert the initial portion of the string
pointed to by str
to:
These functions shall convert the initial portion of the string
pointed to by nptr
On page 2060 line 65841 section strtol(), change:
the value of str shall be stored
to:
the value of nptr shall be stored
Action: Don to submit a separate bug to merge atoi() into atol()/atoll() as an Issue 8 bug.
Next Steps
----------
The next call is on February 26, 2015 (a Thursday)
Calls are anchored on US time. (8am Pacific)
This call will be for the regular 90 minutes.
http://austingroupbugs.net
An IRC channel will be available for the meeting
irc://irc.freenode.net/austingroupbugs
An etherpad is usually up for the meeting, with a URL using the date format as below:
http://posix@posix.rhansen.org:9001/p/201x-mm-dd
password=2115756#