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:
authorCorinna Vinschen <corinna@vinschen.de>2012-03-20 22:01:09 +0400
committerCorinna Vinschen <corinna@vinschen.de>2012-03-20 22:01:09 +0400
commit8ea7221511d3ca28d63f030cb276690417a76c4e (patch)
tree490b197b2065f54160e6e281bde888e80a0723ed /winsup/cygwin/include
parent1fb6667f1ca346ab7f845b1adcb146a7d6e243fc (diff)
* ntdll.h (SharedUserData): Add volatile qualifier. This fixes a
possible infinite loop in hires_ms::timeGetTime_ns.
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r--winsup/cygwin/include/cygwin/socket.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/include/cygwin/socket.h b/winsup/cygwin/include/cygwin/socket.h
index 0f099241a..41c2eb5f8 100644
--- a/winsup/cygwin/include/cygwin/socket.h
+++ b/winsup/cygwin/include/cygwin/socket.h
@@ -1,6 +1,6 @@
/* cygwin/socket.h
- Copyright 1999, 2000, 2001, 2005, 2006, 2007, 2009, 2010 Red Hat, Inc.
+ Copyright 1999, 2000, 2001, 2005, 2006, 2007, 2009, 2010, 2012 Red Hat, Inc.
This file is part of Cygwin.
@@ -269,8 +269,8 @@ struct OLD_msghdr
#define MCAST_JOIN_SOURCE_GROUP 45
#define MCAST_LEAVE_SOURCE_GROUP 46
-#define MCAST_EXCLUDE 0
-#define MCAST_INCLUDE 1
+#define MCAST_INCLUDE 0
+#define MCAST_EXCLUDE 1
/* Old WinSock1 values, needed internally */
#ifdef __INSIDE_CYGWIN__