* dtable.h (dtable::lock): Revert static.

(dtable::unlock): Ditto.
This commit is contained in:
Christopher Faylor 2014-01-17 17:22:57 +00:00
parent 93012a1d0d
commit 58f6b1f1b2
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2014-01-17 Christopher Faylor <me.cygwin2014@cgf.cx>
* dtable.h (dtable::lock): Revert static.
(dtable::unlock): Ditto.
2014-01-17 Corinna Vinschen <corinna@vinschen.de>
* passwd.cc (setpassent): Align to BSD definition.
@ -27,6 +32,7 @@
2014-01-16 Christopher Faylor <me.cygwin2014@cgf.cx>
* dtable.h (dtable::lock): Make static.
(dtable::unlock): Ditto.
2014-01-08 Christopher Faylor <me.cygwin2014@cgf.cx>

View File

@ -85,8 +85,8 @@ public:
void delete_archetype (fhandler_base *);
void fixup_before_exec (DWORD win_proc_id);
void fixup_before_fork (DWORD win_proc_id);
static void lock () {lock_process::locker.acquire ();}
static void unlock () {lock_process::locker.release ();}
void lock () {lock_process::locker.acquire ();}
void unlock () {lock_process::locker.release ();}
};
fhandler_base *build_fh_dev (const device&, const char * = NULL);