diff options
author | Joshua Daniel Franklin <joshuadfranklin@yahoo.com> | 2004-01-11 08:32:09 +0000 |
---|---|---|
committer | Joshua Daniel Franklin <joshuadfranklin@yahoo.com> | 2004-01-11 08:32:09 +0000 |
commit | ac51da48181e56cb45ddd609b50a3549287bdc27 (patch) | |
tree | ba25960f641c689cc31dcc07971b3fbafbd35005 /winsup/doc/pathnames.sgml | |
parent | 83498941ba56d4e3507ca39e5ade2790cd49b135 (diff) | |
download | cygnal-ac51da48181e56cb45ddd609b50a3549287bdc27.tar.gz cygnal-ac51da48181e56cb45ddd609b50a3549287bdc27.tar.bz2 cygnal-ac51da48181e56cb45ddd609b50a3549287bdc27.zip |
2004-01-11 Joshua Daniel Franklin <joshuadfranklin@yahoo.com>
* Makefile.in: Add new target for single-file User's Guide, use new
cygwin.dsl for output.
* cygwin.dsl: New file, DSSSL stylesheet for custom Cygwin output.
* cygwin-api.in.sgml: Update to DocBook SGML 4.2 DTD.
* cygwin-ug-net.in.sgml: Update to DocBook SGML 4.2 DTD.
* cygwin-ug.in.sgml: Update to DocBook SGML 4.2 DTD.
* cygwinenv.sgml: Correct some tags. Add description of default values
to ntsec, export, and error_start items.
* dll.sgml: Add explanation of cyg prefix for DLLs.
* effectively.sgml: Use systemitem tag for names of Cygwin packages.
* how-programming.texinfo: Add example to FAQ entry.
* pathnames.sgml: Add discussion of /proc filesystem.
* setup-net.sgml: Correct some typos and grammar.
Diffstat (limited to 'winsup/doc/pathnames.sgml')
-rw-r--r-- | winsup/doc/pathnames.sgml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/winsup/doc/pathnames.sgml b/winsup/doc/pathnames.sgml index 13441e995..56a5f7d69 100644 --- a/winsup/doc/pathnames.sgml +++ b/winsup/doc/pathnames.sgml @@ -292,6 +292,30 @@ when needed. </para> </sect2> +<sect2><title>The /proc filesystem</title> +<para> +Cygwin, like Linux and other similar operating systems, supports the +<filename>/proc</filename> virtual filesystem. The files in this +directory are representations of various aspects of your system, +for example the command <userinput>cat /proc/cpuinfo</userinput> +displays information such as what model and speed processor you have. +</para> +<para> +One unique aspect of the Cygwin <filename>/proc</filename> filesystem +is <filename>/proc/registry</filename>, which displays the Windows +registry with each <literal>KEY</literal> as a directory and each +<literal>VALUE</literal> as a file. As anytime you deal with the +Windows registry, use caution since changes may result in an unstable +or broken system. +</para> +<para> +The Cygwin <filename>/proc</filename> is not as complete as the +one in Linux, but it provides significant capabilities. The +<systemitem>procps</systemitem> package contains several utilities +that use it. +</para> +</sect2> + <sect2><title>The @pathnames</title> <para>To circumvent the limitations on shell line length in the native Windows command shells, Cygwin programs expand their arguments |