Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorMark Geisert <mark@maxrnd.com>2018-07-24 08:31:59 +0300
committerCorinna Vinschen <corinna@vinschen.de>2018-07-25 10:36:24 +0300
commit7f32efbf73785296dfba1e3f1fece5117fc68f13 (patch)
treedd26429435746e0316c1da7e598728e899929879 /winsup
parent87253cbe385728c3aafb561f21bb623dbfb4d576 (diff)
POSIX Asynchronous I/O support: other files
Updates to misc files to integrate AIO into the Cygwin source tree. Much of it has to be done when adding any new syscalls. There are some updates to limits.h for AIO-specific limits. And some doc mods.
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/Makefile.in1
-rw-r--r--winsup/cygwin/common.din8
-rw-r--r--winsup/cygwin/include/cygwin/version.h6
-rw-r--r--winsup/cygwin/include/limits.h17
-rw-r--r--winsup/cygwin/release/2.11.04
-rw-r--r--winsup/cygwin/sysconf.cc6
-rw-r--r--winsup/cygwin/thread.cc4
-rw-r--r--winsup/doc/new-features.xml6
-rw-r--r--winsup/doc/posix.xml16
-rw-r--r--winsup/utils/strace.cc2
10 files changed, 44 insertions, 26 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in
index 32f8025cc..966460da8 100644
--- a/winsup/cygwin/Makefile.in
+++ b/winsup/cygwin/Makefile.in
@@ -249,6 +249,7 @@ MATH_OFILES:= \
DLL_OFILES:= \
advapi32.o \
+ aio.o \
arc4random_stir.o \
assert.o \
autoload.o \
diff --git a/winsup/cygwin/common.din b/winsup/cygwin/common.din
index d81b9c5da..312b04c5b 100644
--- a/winsup/cygwin/common.din
+++ b/winsup/cygwin/common.din
@@ -195,6 +195,13 @@ acosh NOSIGFE
acoshf NOSIGFE
acoshl NOSIGFE
acosl NOSIGFE
+aio_cancel SIGFE
+aio_error NOSIGFE
+aio_fsync SIGFE
+aio_read SIGFE
+aio_return NOSIGFE
+aio_suspend SIGFE
+aio_write SIGFE
alarm SIGFE
aligned_alloc SIGFE
alphasort NOSIGFE
@@ -843,6 +850,7 @@ lgammal_r NOSIGFE
lgetxattr SIGFE
link SIGFE
linkat SIGFE
+lio_listio SIGFE
listen = cygwin_listen SIGFE
listxattr SIGFE
llabs NOSIGFE
diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h
index b461fa9c7..5140dd19d 100644
--- a/winsup/cygwin/include/cygwin/version.h
+++ b/winsup/cygwin/include/cygwin/version.h
@@ -494,14 +494,16 @@ details. */
323: scanf %l[ conversion.
324: Export sigtimedwait.
325: Export catclose, catgets, catopen.
- 326: Export clearenv
+ 326: Export clearenv.
327: Export pthread_tryjoin_np, pthread_timedjoin_np.
+ 328: Export aio_cancel, aio_error, aio_fsync, aio_read, aio_return,
+ aio_suspend, aio_write, lio_listio.
Note that we forgot to bump the api for ualarm, strtoll, strtoull,
sigaltstack, sethostname. */
#define CYGWIN_VERSION_API_MAJOR 0
-#define CYGWIN_VERSION_API_MINOR 327
+#define CYGWIN_VERSION_API_MINOR 328
/* There is also a compatibity version number associated with the shared memory
regions. It is incremented when incompatible changes are made to the shared
diff --git a/winsup/cygwin/include/limits.h b/winsup/cygwin/include/limits.h
index fe1b8b493..3550c4fcb 100644
--- a/winsup/cygwin/include/limits.h
+++ b/winsup/cygwin/include/limits.h
@@ -147,7 +147,7 @@ details. */
/* Runtime Invariant Values */
-/* Please note that symbolic names shall be ommited, on specific
+/* Please note that symbolic names shall be omitted, on specific
implementations where the corresponding value is equal to or greater
than the stated minimum, but is unspecified. This indetermination
might depend on the amount of available memory space on a specific
@@ -155,19 +155,16 @@ details. */
a specific instance shall be provided by the sysconf() function. */
/* Maximum number of I/O operations in a single list I/O call supported by
- the implementation. Not yet implemented. */
-#undef AIO_LISTIO_MAX
-/* #define AIO_LISTIO_MAX >= _POSIX_AIO_LISTIO_MAX */
+ the implementation. */
+#define AIO_LISTIO_MAX 32
/* Maximum number of outstanding asynchronous I/O operations supported by
- the implementation. Not yet implemented. */
-#undef AIO_MAX
-/* #define AIO_MAX >= _POSIX_AIO_MAX */
+ the implementation. */
+#define AIO_MAX 8
/* The maximum amount by which a process can decrease its asynchronous I/O
- priority level from its own scheduling priority. */
-#undef AIO_PRIO_DELTA_MAX
-/* #define AIO_PRIO_DELTA_MAX >= 0 */
+ priority level from its own scheduling priority. Not yet implemented. */
+#define AIO_PRIO_DELTA_MAX 0
/* Maximum number of bytes in arguments and environment passed in an exec
call. 32000 is the safe value used for Windows processes when called
diff --git a/winsup/cygwin/release/2.11.0 b/winsup/cygwin/release/2.11.0
index 512b89e91..e5722715d 100644
--- a/winsup/cygwin/release/2.11.0
+++ b/winsup/cygwin/release/2.11.0
@@ -3,6 +3,10 @@ What's new:
- New API: clearenv, pthread_tryjoin_np, pthread_timedjoin_np.
+- New APIs: aio_cancel, aio_error, aio_fsync, aio_read, aio_return,
+ aio_suspend, aio_write, lio_listio.
+ New header: <aio.h>.
+
What changed:
-------------
diff --git a/winsup/cygwin/sysconf.cc b/winsup/cygwin/sysconf.cc
index 7680cfc90..ff98f57a3 100644
--- a/winsup/cygwin/sysconf.cc
+++ b/winsup/cygwin/sysconf.cc
@@ -541,9 +541,9 @@ static struct
{cons, {c:_POSIX_SHARED_MEMORY_OBJECTS}}, /* 31, _SC_SHARED_MEMORY_OBJECTS */
{cons, {c:_POSIX_SYNCHRONIZED_IO}}, /* 32, _SC_SYNCHRONIZED_IO */
{cons, {c:_POSIX_TIMERS}}, /* 33, _SC_TIMERS */
- {nsup, {c:0}}, /* 34, _SC_AIO_LISTIO_MAX */
- {nsup, {c:0}}, /* 35, _SC_AIO_MAX */
- {nsup, {c:0}}, /* 36, _SC_AIO_PRIO_DELTA_MAX */
+ {cons, {c:AIO_LISTIO_MAX}}, /* 34, _SC_AIO_LISTIO_MAX */
+ {cons, {c:AIO_MAX}}, /* 35, _SC_AIO_MAX */
+ {cons, {c:AIO_PRIO_DELTA_MAX}}, /* 36, _SC_AIO_PRIO_DELTA_MAX */
{nsup, {c:0}}, /* 37, _SC_DELAYTIMER_MAX */
{cons, {c:PTHREAD_KEYS_MAX}}, /* 38, _SC_THREAD_KEYS_MAX */
{cons, {c:PTHREAD_STACK_MIN}}, /* 39, _SC_THREAD_STACK_MIN */
diff --git a/winsup/cygwin/thread.cc b/winsup/cygwin/thread.cc
index 2cbdcf561..0bddaf345 100644
--- a/winsup/cygwin/thread.cc
+++ b/winsup/cygwin/thread.cc
@@ -663,7 +663,7 @@ pthread::cancel ()
Required cancellation points:
* accept ()
- o aio_suspend ()
+ * aio_suspend ()
* clock_nanosleep ()
* close ()
* connect ()
@@ -839,7 +839,7 @@ pthread::cancel ()
ioctl ()
link ()
linkat ()
- o lio_listio ()
+ * lio_listio ()
localtime ()
localtime_r ()
* lockf ()
diff --git a/winsup/doc/new-features.xml b/winsup/doc/new-features.xml
index beba5f2e0..873a579a2 100644
--- a/winsup/doc/new-features.xml
+++ b/winsup/doc/new-features.xml
@@ -20,6 +20,12 @@ SO_RCVTIMEO and SO_SNDTIMEO socket options are now honored.
New API: clearenv, pthread_tryjoin_np, pthread_timedjoin_np.
</para></listitem>
+<listitem><para>
+New APIs for POSIX Asynchronous I/O: aio_cancel, aio_error, aio_fsync,
+aio_read, aio_return, aio_suspend, aio_write, lio_listio.
+New Header: &lt;aio.h&gt;.
+</para></listitem>
+
</itemizedlist>
</sect2>
diff --git a/winsup/doc/posix.xml b/winsup/doc/posix.xml
index c6c714bb9..9cb55ca56 100644
--- a/winsup/doc/posix.xml
+++ b/winsup/doc/posix.xml
@@ -32,6 +32,13 @@ also IEEE Std 1003.1-2008 (POSIX.1-2008).</para>
acoshf
acoshl
acosl
+ aio_cancel
+ aio_error
+ aio_fsync
+ aio_read
+ aio_return
+ aio_suspend
+ aio_write
alarm
alphasort
asctime
@@ -491,6 +498,7 @@ also IEEE Std 1003.1-2008 (POSIX.1-2008).</para>
lgammal
link
linkat
+ lio_listio
listen
llabs
lldiv
@@ -1556,13 +1564,6 @@ also IEEE Std 1003.1-2008 (POSIX.1-2008).</para>
<sect1 id="std-notimpl"><title>NOT implemented system interfaces from the Single Unix Specification, Volume 4:</title>
<screen>
- aio_cancel
- aio_error
- aio_fsync
- aio_read
- aio_return
- aio_suspend
- aio_write
endnetent
fattach
fmtmsg
@@ -1575,7 +1576,6 @@ also IEEE Std 1003.1-2008 (POSIX.1-2008).</para>
getnetent
getpmsg
isastream
- lio_listio
mlockall
munlockall
posix_mem_offset
diff --git a/winsup/utils/strace.cc b/winsup/utils/strace.cc
index ae62cdc5f..616fa7890 100644
--- a/winsup/utils/strace.cc
+++ b/winsup/utils/strace.cc
@@ -985,7 +985,7 @@ Trace system calls and signals\n\
wm 0x000400 (_STRACE_WM) Trace Windows msgs (enable _strace_wm).\n\
sigp 0x000800 (_STRACE_SIGP) Trace signal and process handling.\n\
minimal 0x001000 (_STRACE_MINIMAL) Very minimal strace output.\n\
- pthread 0x002000 (_STRACE_PTHREAD) Pthread calls.\n\
+ pthread 0x002000 (_STRACE_PTHREAD) Pthread calls.\n\
exitdump 0x004000 (_STRACE_EXITDUMP) Dump strace cache on exit.\n\
system 0x008000 (_STRACE_SYSTEM) Serious error; goes to console and log.\n\
nomutex 0x010000 (_STRACE_NOMUTEX) Don't use mutex for synchronization.\n\