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:
Diffstat (limited to 'winsup/cygwin/local_includes/fhandler.h')
-rw-r--r--winsup/cygwin/local_includes/fhandler.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/local_includes/fhandler.h b/winsup/cygwin/local_includes/fhandler.h
index cd61aadf8..6013496d5 100644
--- a/winsup/cygwin/local_includes/fhandler.h
+++ b/winsup/cygwin/local_includes/fhandler.h
@@ -3194,10 +3194,15 @@ class fhandler_procnet: public fhandler_proc
class fhandler_dev_disk: public fhandler_virtual
{
+public:
enum dev_disk_location {
- unknown_loc, invalid_loc, disk_dir, by_id_dir, by_id_link
+ unknown_loc, invalid_loc, disk_dir,
+ disk_by_id, disk_by_partuuid
};
+
+private:
dev_disk_location loc;
+ bool loc_is_link;
void init_dev_disk ();
void ensure_inited ()