diff options
author | Mark Geisert <mark@maxrnd.com> | 2025-02-26 22:35:38 -0800 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2025-02-27 10:00:19 +0100 |
commit | 2a2fd299166019ad56cc8e55efdfdfffaaed0b5c (patch) | |
tree | 57c54d8bbb35bac3ff2e6b4e2446e0460a19297b | |
parent | 15b52ba69d643a2e9f675fbdfcb589a798d0be48 (diff) | |
download | newlib-2a2fd299166019ad56cc8e55efdfdfffaaed0b5c.zip newlib-2a2fd299166019ad56cc8e55efdfdfffaaed0b5c.tar.gz newlib-2a2fd299166019ad56cc8e55efdfdfffaaed0b5c.tar.bz2 |
Cygwin: Add spawn family of functions to docs
In the doc tree, add a new section "Other system interfaces[...]" that
lists the spawn family of functions, most of the exposed cygwin internal
functions that a user might have use for, and some other functions
duplicating Windows or DOS interfaces that might have some utility.
-rw-r--r-- | winsup/doc/posix.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/winsup/doc/posix.xml b/winsup/doc/posix.xml index 43e860b..748f243 100644 --- a/winsup/doc/posix.xml +++ b/winsup/doc/posix.xml @@ -1762,6 +1762,38 @@ ISO®/IEC DIS 9945 Information technology </sect1> +<sect1 id="std-other"><title>Other system interfaces, some from Windows:</title> + +<screen> + _get_osfhandle (Windows) + _setmode (Windows) + cwait (Windows) + cygwin_attach_handle_to_fd + cygwin_conv_path + cygwin_conv_path_list + cygwin_create_path + cygwin_detach_dll + cygwin_dll_init + cygwin_internal + cygwin_logon_user + cygwin_posix_path_list_p + cygwin_set_impersonation_token + cygwin_split_path + cygwin_stackdump + cygwin_umount + cygwin_winpid_to_pid + spawnl (Windows) + spawnle (Windows) + spawnlp (Windows) + spawnlpe (Windows) + spawnv (Windows) + spawnve (Windows) + spawnvp (Windows) + spawnvpe (Windows) +</screen> + +</sect1> + <sect1 id="std-notes"><title>Implementation Notes</title> <para><function>chroot</function> only emulates a chroot function call |