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
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2011-04-01 23:48:19 +0400
committerYaakov Selkowitz <yselkowi@redhat.com>2011-04-01 23:48:19 +0400
commitd68288f697fae3c3cebe1cfa4780b467cf85f13c (patch)
treeedc0ed9c2195cec2cd2545ff4b8fd33d1e7d6ff2 /winsup/cygwin/dtable.cc
parente974e7a0830c44b7308ad6b754b83c72425ddc9d (diff)
Implement /proc/sysvipc/*
* devices.in (dev_procsysvipc_storage): Add. * devices.cc: Regenerate. * devices.h (fh_devices): Add FH_PROCSYSVIPC. * dtable.cc (build_fh_pc): Add case FH_PROCSYSVIPC. * fhandler.h (class fhandler_procsysvipc): Declare. (fhandler_union): Add __procsysvipc. * fhandler_proc.cc (proc_tab): Add sysvipc virt_directory. * fhandler_procsysvipc.cc: New file. * Makefile.in (DLL_OFILES): Add fhandler_procsysvipc.o. * path.h (isproc_dev): Add FH_PROCSYSVIPC to conditional.
Diffstat (limited to 'winsup/cygwin/dtable.cc')
-rw-r--r--winsup/cygwin/dtable.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc
index 6a9d55df1..4529aa906 100644
--- a/winsup/cygwin/dtable.cc
+++ b/winsup/cygwin/dtable.cc
@@ -543,6 +543,9 @@ build_fh_pc (path_conv& pc, bool set_name)
case FH_PROCSYS:
fh = cnew (fhandler_procsys) ();
break;
+ case FH_PROCSYSVIPC:
+ fh = cnew (fhandler_procsysvipc) ();
+ break;
case FH_NETDRIVE:
fh = cnew (fhandler_netdrive) ();
break;