Minutes of the 26 February 2015 Teleconference Austin-697 Page 1 of 1
Submitted by Andrew Josey, The Open Group. 27 February 2015
Attendees:
Don Cragun, IEEE OR
Mark Ziegast, SHware Systems
Andrew Josey, The Open Group
Geoff Clare, The Open Group
Nick Stoughton, USENIX, ISO/IEC JTC 1/SC 22 OR
Joerg Schilling, FOKUS Fraunhofer
David Clissold, IBM
Martin Rehak, Oracle, The Open Group OR
Eric Blake, Red Hat
Apologies:
Richard Hansen, BBN
* General news
PASC PAR approval. - the email ballot is in progress.
Voting members of the PASC SEC are reminded to return their ballots ASAP.
* 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
Andrew had completed his action from last time to flush the
interpretations queue.
Bug 0000887: printf and other functions appear many times in search results
http://austingroupbugs.net/view.php?id=887
Andrew has started his action and added a bug note. He is looking
at whether this can be done automatically. There was discussion
whether its necessary - Andrew will continue investigating.
Bug 0000890: Here-document in a command string (sh -c) Accepted as marked.
http://austingroupbugs.net/view.php?id=890
This bug was reopened so that we can address the points raised by
Stephane Chazelas on the email list about covering "eval" and about
the file descriptor not necessarily being opened to a regular file.
This item is tagged for TC2-2008.
The new changes are as follows:
On Page: 2335 Line: 74224 Section: 2.7.4 Here-Document
Change from:
The redirection operators "<<" and "<<-" both allow redirection
of lines contained in a shell input file, known as a "here-document",
to the input of a command.
to:
The redirection operators "<<" and "<<-" both allow redirection
of subsequent lines read by the shell to the input of a command.
The redirected lines are known as a "here-document".
On Page: 2335 Line: 74233 Section: 2.7.4 Here-Document
After:
where the optional n represents the file descriptor number. If
the number is omitted, the here-document refers to standard
input (file descriptor 0).
add a new sentence:
It is unspecified whether the file descriptor is opened as a
regular file, a special file, or a pipe. Portable applications
cannot rely on the file descriptor being seekable (see [xref
to XSH lseek()]).
Bug 0000926: Documentation error in fread() example at (http://pubs.opengroup.org/onlinepubs/009695399/functions/fread.html) Accepted as Marked
http://austingroupbugs.net/view.php?id=926
In the next Technical Corrigendum, on P921, L31022-31023 (for the Issue 7-2013 edition), change:
The following example reads a single element from the fp stream
into the array pointed to by buf.
to:
The following example transfers a single 100-byte fixed length
record from the fp stream into the array pointed to by buf.
Bug 0000893: stat("home/cnd/mod1", &buffer;); Accepted as Marked
http://austingroupbugs.net/view.php?id=893
This item is tagged for TC2-2008.
At lines 22437 and 22438 change from:
chmod("home/cnd/mod1", S_IRWXU|S_IRWXG|S_IROTH|S_IWOTH);
status = stat("home/cnd/mod1", &buffer;);
to:
chmod("/home/cnd/mod1", S_IRWXU|S_IRWXG|S_IROTH|S_IWOTH);
status = stat("/home/cnd/mod1", &buffer);
Bug 0000894: Missing text clarifying %#.0o format Accepted as Marked
http://austingroupbugs.net/view.php?id=894
This item is tagged for TC2-2008
On Page: 902 Line: 30242-30243
Change:
For o conversion, it increases the precision (if
necessary) to force the first digit of the result to be zero.
to:
For o conversion, it shall increase the precision, if
and only if necessary, to force the first digit of the result
to be a zero (if the value and precision are both 0, a single
0 is printed).
Next Steps
----------
The next call is on March 5, 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#