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.
This commit is contained in:
Yaakov Selkowitz
2011-04-01 19:48:19 +00:00
parent e974e7a083
commit d68288f697
10 changed files with 392 additions and 7 deletions

View File

@ -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;