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:
authorPierre Humblet <phumblet@phumblet.no-ip.org>2003-09-25 08:03:53 +0400
committerPierre Humblet <phumblet@phumblet.no-ip.org>2003-09-25 08:03:53 +0400
commit64150cfc6afa0339f2ec10466ba8122d996ec099 (patch)
tree92e3a58f5482841a1e075659fea79ea6b9a5a6a5 /winsup/cygwin/shared_info.h
parentcd2bce7142ff77e1e55149e5edfe04167b4e8964 (diff)
2003-09-25 Pierre Humblet <pierre.humblet@ieee.org>
* shared_info.h: Update CURR_USER_MAGIC, CURR_SHARED_MAGIC and SHARED_INFO_CB. (mount_info::cb): Delete. (mount_info::version): Delete. (shared_info::delqueue): Delete. * Makefile.in: Do magic for USER_MAGIC, class user_info, instead of for mount_info.
Diffstat (limited to 'winsup/cygwin/shared_info.h')
-rw-r--r--winsup/cygwin/shared_info.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/winsup/cygwin/shared_info.h b/winsup/cygwin/shared_info.h
index dadab8993..fd197bd57 100644
--- a/winsup/cygwin/shared_info.h
+++ b/winsup/cygwin/shared_info.h
@@ -43,8 +43,8 @@ class mount_item
#define MAX_MOUNTS 30
#define USER_VERSION 1 // increment when mount table changes and
-#define USER_VERSION_MAGIC CYGWIN_VERSION_MAGIC (MOUNT_MAGIC, USER_VERSION)
-#define CURR_MOUNT_MAGIC 0x6dd73a3fU
+#define USER_VERSION_MAGIC CYGWIN_VERSION_MAGIC (USER_MAGIC, USER_VERSION)
+#define CURR_USER_MAGIC 0x8dc7b1d5U
class reg_key;
struct device;
@@ -55,8 +55,6 @@ struct device;
class mount_info
{
public:
- DWORD version;
- unsigned cb;
DWORD sys_mount_table_counter;
int nmounts;
mount_item mount[MAX_MOUNTS];
@@ -147,9 +145,9 @@ public:
cygwin_version.api_minor)
#define SHARED_VERSION_MAGIC CYGWIN_VERSION_MAGIC (SHARED_MAGIC, SHARED_VERSION)
-#define SHARED_INFO_CB 47112
+#define SHARED_INFO_CB 21008
-#define CURR_SHARED_MAGIC 0x359218a2U
+#define CURR_SHARED_MAGIC 0x818f75beU
/* NOTE: Do not make gratuitous changes to the names or organization of the
below class. The layout is checksummed to determine compatibility between
@@ -163,7 +161,6 @@ class shared_info
DWORD sys_mount_table_counter;
tty_list tty;
- delqueue_list delqueue;
void initialize ();
unsigned heap_chunk_size ();
};