Re: [Mingw-w64-public] [Mingw-users] Debugging with GDB on Windows / MinGW is painfully slow

2012-07-20 Thread asmwarrior
On 2012-7-21 11:38, K. Frank wrote: > As I mentioned above, my gdb version is 7.3.0. > >> >You can try a recent gdb (mostly the gdb build from gdb cvs HEAD) > If anybody knows of a recent mingw or mingw-w64 build of gdb > that addresses this issue, please chime in. > You can try my build of gdb CVS

Re: [Mingw-w64-public] [Mingw-users] Debugging with GDB on Windows / MinGW is painfully slow

2012-07-20 Thread K. Frank
Hello Eran and asmwarrior! I have seen something similar with a mingw-w64 build. (I have taken the liberty of cross-posting this reply to the mingw-w64 list.) On Fri, Jul 20, 2012 at 9:46 PM, asmwarrior wrote: > On 2012-7-20 21:10, Eran Ifrah wrote: >> Hello, >> >> I am not sure whether this is

Re: [Mingw-w64-public] [patch] ws2tcpip.h: EAI_NODATA should be int

2012-07-20 Thread Kai Tietz
2012/7/20 Ozkan Sezer : > On 7/20/12, Corinna Vinschen wrote: >> On Jul 20 20:15, Corinna Vinschen wrote: >>> On Jul 20 19:45, Kai Tietz wrote: >>> > 2012/7/20 Corinna Vinschen : >>> > > Hi, >>> > > >>> > > The error codes returned by getaddrinfo and getnameinfo are defined >>> > > as int values.

Re: [Mingw-w64-public] [patch] ws2tcpip.h: EAI_NODATA should be int

2012-07-20 Thread Ozkan Sezer
On 7/20/12, Corinna Vinschen wrote: > On Jul 20 20:15, Corinna Vinschen wrote: >> On Jul 20 19:45, Kai Tietz wrote: >> > 2012/7/20 Corinna Vinschen : >> > > Hi, >> > > >> > > The error codes returned by getaddrinfo and getnameinfo are defined >> > > as int values. The below patch fixes that for E

Re: [Mingw-w64-public] [patch] ws2tcpip.h: EAI_NODATA should be int

2012-07-20 Thread Corinna Vinschen
On Jul 20 20:15, Corinna Vinschen wrote: > On Jul 20 19:45, Kai Tietz wrote: > > 2012/7/20 Corinna Vinschen : > > > Hi, > > > > > > The error codes returned by getaddrinfo and getnameinfo are defined > > > as int values. The below patch fixes that for EAI_NODATA. Ok? > > > > > > > > > Thanks, > >

Re: [Mingw-w64-public] [patch] ws2tcpip.h: EAI_NODATA should be int

2012-07-20 Thread Corinna Vinschen
On Jul 20 19:45, Kai Tietz wrote: > 2012/7/20 Corinna Vinschen : > > Hi, > > > > The error codes returned by getaddrinfo and getnameinfo are defined > > as int values. The below patch fixes that for EAI_NODATA. Ok? > > > > > > Thanks, > > Corinna > > Hmm, I think we should keep these kind of val

Re: [Mingw-w64-public] [patch] winuser.h: HELP_xxx constants are UINT, not LONG

2012-07-20 Thread Kai Tietz
2012/7/20 Corinna Vinschen : > Hi, > > per MSDN, the WinHelp function takes a UINT as command parameter. > THis is refelcted in our winuser.h, but for some reason most of > the related HELP_xxx defines used as commands are defined as long. > The below patch fixes that. Ok? > > > Thanks, > Corinna

Re: [Mingw-w64-public] [patch] ws2tcpip.h: EAI_NODATA should be int

2012-07-20 Thread Kai Tietz
2012/7/20 Corinna Vinschen : > Hi, > > The error codes returned by getaddrinfo and getnameinfo are defined > as int values. The below patch fixes that for EAI_NODATA. Ok? > > > Thanks, > Corinna Hmm, I think we should keep these kind of values long for LLP64 and ILP targets. Ozkan, any strong o

Re: [Mingw-w64-public] [patch] directx/dxerr[89].h: Define empty, non-debug DXTRACE_MSG statement as int

2012-07-20 Thread Kai Tietz
This is ok. Thanks, Kai -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoi

Re: [Mingw-w64-public] [patch] kcom.h: YA GUID

2012-07-20 Thread Kai Tietz
Yes, this is ok. Thanks, Kai -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include e

[Mingw-w64-public] [patch] kcom.h: YA GUID

2012-07-20 Thread Corinna Vinschen
Another one... Ok? Thanks, Corinna * kcom.h (STATIC_KoCreateObject): Drop 'L' modifier from Data1 member in GUID definition. Index: kcom.h === --- kcom.h (revision 5238) +++ kcom.h (working copy) @@ -2

[Mingw-w64-public] [patch] directx/dxerr[89].h: Define empty, non-debug DXTRACE_MSG statement as int

2012-07-20 Thread Corinna Vinschen
Hi, directx/dxerr8.h and directx/dxerr9.h define the empty DXTRACE_MSG statement in the non-debug case as #define DXTRACE_MSG(str) (0L) The "L" qualifier is useless here, so just remove it. Ok? Thanks, Corinna * directx/dxerr8.h (DXTRACE_MSG): Drop long qualifier from

[Mingw-w64-public] [patch] ws2tcpip.h: EAI_NODATA should be int

2012-07-20 Thread Corinna Vinschen
Hi, The error codes returned by getaddrinfo and getnameinfo are defined as int values. The below patch fixes that for EAI_NODATA. Ok? Thanks, Corinna * ws2tcpip.h (EAI_NODATA): Define as int value. Index: ws2tcpip.h ==

[Mingw-w64-public] [patch] winuser.h: HELP_xxx constants are UINT, not LONG

2012-07-20 Thread Corinna Vinschen
Hi, per MSDN, the WinHelp function takes a UINT as command parameter. THis is refelcted in our winuser.h, but for some reason most of the related HELP_xxx defines used as commands are defined as long. The below patch fixes that. Ok? Thanks, Corinna * winuser.h: Convert all HELP_xxx co