Cygwin: af_unix_spinlock_t: add initializer

Also fix a typo.
This commit is contained in:
Ken Brown 2019-01-10 17:56:55 +00:00 committed by Corinna Vinschen
parent fbd3835384
commit 367df1d4e0
1 changed files with 2 additions and 1 deletions

View File

@ -832,9 +832,10 @@ class fhandler_socket_local: public fhandler_socket_wsock
/* Sharable spinlock with low CPU profile. These locks are NOT recursive! */
class af_unix_spinlock_t
{
LONG locked; /* 0 oder 1 */
LONG locked; /* 0 or 1 */
public:
af_unix_spinlock_t () : locked (0) {}
void lock ()
{
LONG ret = InterlockedExchange (&locked, 1);