OSDN Git Service

* sync.h (muto::initforce): Delete flawed implementation.
authorcgf <cgf>
Tue, 5 Apr 2005 06:04:52 +0000 (06:04 +0000)
committercgf <cgf>
Tue, 5 Apr 2005 06:04:52 +0000 (06:04 +0000)
* pwdgrp.h (pwdgrp::pglock): Make static.
* grp.cc (pwdgrp::pwdgrp): Eliminate use of initforce.

winsup/cygwin/ChangeLog
winsup/cygwin/grp.cc
winsup/cygwin/pwdgrp.h
winsup/cygwin/sigproc.cc
winsup/cygwin/sync.h

index 212fe89..0e1a78e 100644 (file)
@@ -1,5 +1,11 @@
 2005-04-05  Christopher Faylor  <cgf@timesys.com>
 
+       * sync.h (muto::initforce): Delete flawed implementation.
+       * pwdgrp.h (pwdgrp::pglock): Make static.
+       * grp.cc (pwdgrp::pwdgrp): Eliminate use of initforce.
+
+2005-04-05  Christopher Faylor  <cgf@timesys.com>
+
        * sync.h (muto::initforce): Force initialization even when name !=
        NULL.
        * grp.cc (pwdgrp::pwdgrp): Use initforce since the enclosing structure
index 190d9cb..e793839 100644 (file)
@@ -106,12 +106,14 @@ pwdgrp::read_group ()
   return;
 }
 
+muto NO_COPY pwdgrp::pglock;
+
 pwdgrp::pwdgrp (passwd *&pbuf) :
   pwdgrp_buf_elem_size (sizeof (*pbuf)), passwd_buf (&pbuf)
 {
   read = &pwdgrp::read_passwd;
   parse = &pwdgrp::parse_passwd;
-  pglock.initforce ("pwd_lock");
+  pglock.init ("pglock");
 }
 
 pwdgrp::pwdgrp (__group32 *&gbuf) :
@@ -119,7 +121,7 @@ pwdgrp::pwdgrp (__group32 *&gbuf) :
 {
   read = &pwdgrp::read_group;
   parse = &pwdgrp::parse_group;
-  pglock.initforce ("grp_lock");
+  pglock.init ("pglock");
 }
 
 struct __group32 *
index 53899e8..94631c5 100644 (file)
@@ -39,7 +39,7 @@ class pwdgrp
   char *buf, *lptr;
   int max_lines;
   bool initialized;
-  muto pglock;
+  static muto pglock;
 
   bool parse_passwd ();
   bool parse_group ();
index 564a805..91b2894 100644 (file)
@@ -70,7 +70,7 @@ Static char cprocs[(NPROCS + 1) * sizeof (pinfo)];// All my children info
                                        // constructor operation  at DLL startup
 Static waitq waitq_head = {0, 0, 0, 0, 0, 0, 0};// Start of queue for wait'ing threads
 
-muto NO_COPY sync_proc_subproc;                // Control access to subproc stuff
+static muto NO_COPY sync_proc_subproc; // Control access to subproc stuff
 
 DWORD NO_COPY sigtid = 0;              // ID of the signal thread
 
index 13fa33c..441892a 100644 (file)
@@ -28,7 +28,6 @@ public:
   void *tls;   /* Tls of lock owner. */
   // class muto *next;
 
-  muto *initforce (const char *s) {name = NULL; return init (s);}
   /* The real constructor. */
   muto *init (const char *) __attribute__ ((regparm (2)));