Mailing-List: contact cygwin-developers-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-developers-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin-developers AT sources DOT redhat DOT com Date: Tue, 4 Sep 2001 14:22:16 -0400 From: Christopher Faylor To: cygwin-developers AT cygwin DOT com Subject: [PATCH] w32api - fix typo for InterlockedExchangePointer Message-ID: <20010904142216.A8788@redhat.com> Reply-To: cygwin-developers AT cygwin DOT com Mail-Followup-To: cygwin-developers AT cygwin DOT com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.21i Tue Sep 4 14:15:59 2001 Christopher Faylor * winbase.h: Add missing closing parentheses to InterlockedExchangePointer declaration. Index: include/winbase.h =================================================================== RCS file: /cvs/uberbaum/winsup/w32api/include/winbase.h,v retrieving revision 1.14 diff -p -r1.14 winbase.h *** winbase.h 2001/08/21 13:58:51 1.14 --- winbase.h 2001/09/04 18:15:48 *************** LONG WINAPI InterlockedDecrement(LPLONG) *** 1319,1325 **** LONG WINAPI InterlockedExchange(LPLONG,LONG); /* PVOID WINAPI InterlockedExchangePointer(PVOID*,PVOID); */ #define InterlockedExchangePointer(t,v) \ ! (PVOID)InterlockedExchange((LPLONG)(t),(LONG)(v) LONG WINAPI InterlockedExchangeAdd(PLONG,LONG); LONG WINAPI InterlockedIncrement(LPLONG); BOOL WINAPI IsBadCodePtr(FARPROC); --- 1319,1325 ---- LONG WINAPI InterlockedExchange(LPLONG,LONG); /* PVOID WINAPI InterlockedExchangePointer(PVOID*,PVOID); */ #define InterlockedExchangePointer(t,v) \ ! (PVOID)InterlockedExchange((LPLONG)(t),(LONG)(v)) LONG WINAPI InterlockedExchangeAdd(PLONG,LONG); LONG WINAPI InterlockedIncrement(LPLONG); BOOL WINAPI IsBadCodePtr(FARPROC);