[prev in list] [next in list] [prev in thread] [next in thread] 

List:       mingw-notify
Subject:    MinGW-notify Digest, Vol 52, Issue 1
From:       mingw-notify-request () lists ! sourceforge ! net
Date:       2010-09-01 10:46:15
Message-ID: mailman.884837.1283337975.5170.mingw-notify () lists ! sourceforge ! net
[Download RAW message or body]

Send MinGW-notify mailing list submissions to
	mingw-notify@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
	https://lists.sourceforge.net/lists/listinfo/mingw-notify
or, via email, send a message with subject or body 'help' to
	mingw-notify-request@lists.sourceforge.net

You can reach the person managing the list at
	mingw-notify-owner@lists.sourceforge.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of MinGW-notify digest..."


This list is used to send updates of submitted patches, bug reports and file \
releases.  You are discouraged from posting to this list.  If you wish to unsubscribe \
you can do so at https://lists.sourceforge.net/lists/listinfo/mingw-notify.

Today's Topics:

   1. [ mingw-Bugs-1950972 ] oleacc.h misses STATE_*	definitions
      (SF/projects/mingw notification list)
   2. [ mingw-Bugs-2962480 ] intrin.h and emmintrin.h	conflicting
      SSE declaration (SF/projects/mingw notification list)
   3. [ mingw-Patches-3055426 ] Sync mingw32-runtime.xml	from the
      published version (SF/projects/mingw notification list)
   4. [ mingw-Patches-3055426 ] Sync mingw32-runtime.xml	from the
      published version (SF/projects/mingw notification list)
   5. [ mingw-Feature Requests-3057002 ] Perl 5.6 is 6	year old
      (SF/projects/mingw notification list)
   6. [ mingw-Bugs-3057358 ] vsnprintf cause application	crash on
      machines with P3 CPU (SF/projects/mingw notification list)
   7. [ mingw-Bugs-3057358 ] vsnprintf cause application	crash on
      machines with P3 CPU (SF/projects/mingw notification list)
   8. [ mingw-Bugs-3057358 ] vsnprintf cause application	crash on
      machines with P3 CPU (SF/projects/mingw notification list)


----------------------------------------------------------------------

Message: 1
Date: Thu, 26 Aug 2010 03:06:51 +0000
From: SF/projects/mingw notification list
	<mingw-notify@lists.sourceforge.net>
Subject: [MinGW-notify] [ mingw-Bugs-1950972 ] oleacc.h misses STATE_*
	definitions
To: noreply@sourceforge.net
Message-ID: <E1OoSnj-0005MW-6H@sfs-web-10.v29.ch3.sourceforge.com>
Content-Type: text/plain; charset="UTF-8"

Bugs item #1950972, was opened at 2008-04-24 12:06
Message generated for change (Comment added) made by ir0nh34d
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102435&aid=1950972&group_id=2435

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: w32api
Group: None
> Status: Closed
> Resolution: Fixed
Priority: 5
Private: No
Submitted By: Marcus von Appen (marcusva)
Assigned to: Chris Sutcliffe (ir0nh34d)
Summary: oleacc.h misses STATE_* definitions

Initial Comment:
oleacc.h misses three STATE_* constants:

STATE_SYSTEM_HASPOPUP
STATE_SYSTEM_NORMAL
STATE_SYSTEM_PROTECTED

See http://msdn2.microsoft.com/en-us/library/ms697270(VS.85).aspx for more details.

----------------------------------------------------------------------

Comment By: Chris Sutcliffe (ir0nh34d)
Date: 2010-08-25 23:06

Message:
Thank you for the report, I've committed a fix to CVS.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102435&aid=1950972&group_id=2435



------------------------------

Message: 2
Date: Thu, 26 Aug 2010 14:22:09 +0000
From: SF/projects/mingw notification list
	<mingw-notify@lists.sourceforge.net>
Subject: [MinGW-notify] [ mingw-Bugs-2962480 ] intrin.h and
	emmintrin.h	conflicting SSE declaration
To: noreply@sourceforge.net
Message-ID: <E1OodLF-0001QS-0b@sfs-web-5.v29.ch3.sourceforge.com>
Content-Type: text/plain; charset="UTF-8"

Bugs item #2962480, was opened at 2010-03-03 10:46
Message generated for change (Comment added) made by emn13
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102435&aid=2962480&group_id=2435

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: MinGW
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Eamon (emn13)
Assigned to: Nobody/Anonymous (nobody)
Summary: intrin.h and emmintrin.h conflicting SSE declaration

Initial Comment:
Both emmintrin.h and intrin.h include SSE intrinsics such as _mm_add_sd.

In intrin.h:
extern "C"{
//[...]
     __MACHINEX86X(__m128d _mm_add_sd(__m128d,__m128d))
//[...]
}

In emmintrin.h:
extern __inline __m128d __attribute__((__gnu_inline__, __always_inline__, \
__artificial__)) _mm_add_sd (__m128d __A, __m128d __B)
{
  return (__m128d)__builtin_ia32_addsd ((__v2df)__A, (__v2df)__B);
}

This causes errors such as...
c:\gcc\equation443\bin\../lib/gcc/x86_64-pc-mingw32/4.4.3/include/emmintrin.h:234: \
error: previous declaration of 'double __vector__ _mm_add_sd(double __vector__, \
double __vector__)' with 'C++' linkage \
c:\gcc\equation443\bin\../lib/gcc/x86_64-pc-mingw32/4.4.3/../../../../x86_64-pc-mingw32/include/intrin.h:599: \
error: conflicts with new declaration with 'C' linkage


The above compile error is the first error in the following sample:
Non-compiling sample (also attached):
#include <emmintrin.h>
#include <windows.h>
int main(int , char* []) {	return 0; }

Working Sample (possible workaround):
#include <windows.h>
#include <emmintrin.h>
int main(int , char* []) {	return 0; }


Environment: gcc -v
Built by Equation Solution <http://www.Equation.com>.
Using built-in specs.
Target: x86_64-pc-mingw32
Configured with: ../gcc-4.4.3-mingw/configure --host=x86_64-pc-mingw32 \
--build=x86_64-unknown-linux-gnu --target=x86_64-pc-mingw32 \
--prefix=/home/gfortran/gcc-home/binary/mingw32/native/x86_64/gcc/4.4.3 \
--with-gmp=/home/gfortran/gcc-home/binary/mingw32/native/x86_64/gmp \
--with-mpfr=/home/gfortran/gcc-home/binary/mingw32/native/x86_64/mpfr \
--with-mpc=/home/gfortran/gcc-home/binary/mingw32/native/x86_64/mpc \
--with-sysroot=/home/gfortran/gcc-home/binary/mingw32/cross/x86_64/gcc/4.4.3 \
--with-gcc --with-gnu-ld --with-gnu-as --disable-shared --disable-nls --disable-tls \
--enable-libgomp --enable-languages=c,fortran,c++ --enable-threads=win32 \
--disable-win32-registry Thread model: win32
gcc version 4.4.3 (GCC) 

...which is one of the mingw binaries on \
http://www.equation.com/servlet/equation.cmd?call=fortran



----------------------------------------------------------------------

Comment By: Eamon (emn13)
Date: 2010-08-26 16:22

Message:
Is this bug tracker actually alive?  This bug makes using
http://eigen.tuxfamily.org/ tricky.

----------------------------------------------------------------------

Comment By: Eamon (emn13)
Date: 2010-03-03 11:09

Message:
A few more details:

- Including <intrin.h> and <emmintrin.h> directly (and not via windows or
more specificically windef.h) always triggers the problem

- My system is an english Win7 Pro x64 and has VS.NET 2010RC installed; in
case it matters.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102435&aid=2962480&group_id=2435



------------------------------

Message: 3
Date: Sun, 29 Aug 2010 11:54:06 +0000
From: SF/projects/mingw notification list
	<mingw-notify@lists.sourceforge.net>
Subject: [MinGW-notify] [ mingw-Patches-3055426 ] Sync
	mingw32-runtime.xml	from the published version
To: noreply@sourceforge.net
Message-ID: <E1OpgSc-00042j-5j@sfs-web-5.v29.ch3.sourceforge.com>
Content-Type: text/plain; charset="UTF-8"

Patches item #3055426, was opened at 2010-08-29 08:54
Message generated for change (Tracker Item Submitted) made by cstrauss
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=302435&aid=3055426&group_id=2435

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Cesar Strauss (cstrauss)
Assigned to: Nobody/Anonymous (nobody)
Summary: Sync mingw32-runtime.xml from the published version

Initial Comment:
Somehow, the published and CVS versions of mingw32-runtime.xml have diverged:

1) The CVS version has tabs converted to spaces.
2) The published version has an additional alias to mingw-runtime.

This patch adds the mingw-runtime alias back to the CVS version. This alias is \
referenced in the gcc manifests.

Regards,
Cesar


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=302435&aid=3055426&group_id=2435



------------------------------

Message: 4
Date: Sun, 29 Aug 2010 12:17:31 +0000
From: SF/projects/mingw notification list
	<mingw-notify@lists.sourceforge.net>
Subject: [MinGW-notify] [ mingw-Patches-3055426 ] Sync
	mingw32-runtime.xml	from the published version
To: noreply@sourceforge.net
Message-ID: <E1OpgpH-00089n-2U@sfs-web-3.v29.ch3.sourceforge.com>
Content-Type: text/plain; charset="UTF-8"

Patches item #3055426, was opened at 2010-08-29 07:54
Message generated for change (Comment added) made by ir0nh34d
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=302435&aid=3055426&group_id=2435

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Cesar Strauss (cstrauss)
Assigned to: Nobody/Anonymous (nobody)
Summary: Sync mingw32-runtime.xml from the published version

Initial Comment:
Somehow, the published and CVS versions of mingw32-runtime.xml have diverged:

1) The CVS version has tabs converted to spaces.
2) The published version has an additional alias to mingw-runtime.

This patch adds the mingw-runtime alias back to the CVS version. This alias is \
referenced in the gcc manifests.

Regards,
Cesar


----------------------------------------------------------------------

> Comment By: Chris Sutcliffe (ir0nh34d)
Date: 2010-08-29 08:17

Message:
I've applied the patch locally and updated it for w32api-3.15-1.  I see
that there is no source packages specified in the xml file.  Is this
expected?

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=302435&aid=3055426&group_id=2435



------------------------------

Message: 5
Date: Tue, 31 Aug 2010 20:59:03 +0000
From: SF/projects/mingw notification list
	<mingw-notify@lists.sourceforge.net>
Subject: [MinGW-notify] [ mingw-Feature Requests-3057002 ] Perl 5.6 is
	6	year old
To: noreply@sourceforge.net
Message-ID: <E1OqXv5-0006BW-2m@sfs-web-11.v29.ch3.sourceforge.com>
Content-Type: text/plain; charset="UTF-8"

Feature Requests item #3057002, was opened at 2010-08-31 16:29
Message generated for change (Tracker Item Submitted) made by dzaragoza
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=352435&aid=3057002&group_id=2435

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: MSYS
Group: None
Status: Open
Priority: 5
Private: No
Submitted By: David Zaragoza (dzaragoza)
Assigned to: Nobody/Anonymous (nobody)
Summary: Perl 5.6 is 6 year old

Initial Comment:
The perl package version available is 6 years old, could it be possible to update it \
to 5.12?

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=352435&aid=3057002&group_id=2435



------------------------------

Message: 6
Date: Wed, 01 Sep 2010 10:38:22 +0000
From: SF/projects/mingw notification list
	<mingw-notify@lists.sourceforge.net>
Subject: [MinGW-notify] [ mingw-Bugs-3057358 ] vsnprintf cause
	application	crash on machines with P3 CPU
To: noreply@sourceforge.net
Message-ID: <E1Oqkhy-00042N-UB@sfs-web-11.v29.ch3.sourceforge.com>
Content-Type: text/plain; charset="UTF-8"

Bugs item #3057358, was opened at 2010-09-01 14:38
Message generated for change (Tracker Item Submitted) made by b-s-a
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102435&aid=3057358&group_id=2435

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: mingw runtime
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: b-s-a (b-s-a)
Assigned to: Nobody/Anonymous (nobody)
Summary: vsnprintf cause application crash on machines with P3 CPU

Initial Comment:
This code always cause program error on machine with CPU Intel Pentium III. Replacing \
vsnprintf by _vsnprintf fixes the problem. On P4, Core 2 and AMD Athlon 64 no \
problems.


#include <string>
#include <iostream>
#include <cstdarg>
#include <cstdio>
#include <vector>

std::string formatString(const char *format, ...)
{
    va_list ap1;
    va_list ap2;
    va_start(ap1, format);
    va_copy(ap2, ap1);
    const int size = ::vsnprintf(NULL, 0, format, ap2) + 1;
    va_end(ap2);

    std::vector<char> buffer(size);
    ::vsnprintf(&*buffer.begin(), size, format, ap1);
    va_end(ap1);

    std::string result(buffer.begin(), buffer.end()-1);

    return result;
}

int main()
{
    std::string txt = "some text";
    std::cout << formatString("%s:%u", txt.c_str(), 1235) << std::endl;
    return 0;
}

mingw-runtime versions 3.18 and 3.16

$ mingw32-g++ -v
Using built-in specs.
Target: mingw32
Configured with: /var/tmp/cross/mingw32/portage/cross-mingw32/gcc-4.4.3-r2/work/gcc-4.4.3/configure \
--prefix=/usr --bindir=/usr/x86_64-pc-linux-gnu/mingw32/gcc-bin/4.4.3 \
--includedir=/usr/lib/gcc/mingw32/4.4.3/include \
--datadir=/usr/share/gcc-data/mingw32/4.4.3 \
--mandir=/usr/share/gcc-data/mingw32/4.4.3/man \
--infodir=/usr/share/gcc-data/mingw32/4.4.3/info \
--with-gxx-include-dir=/usr/lib/gcc/mingw32/4.4.3/include/g++-v4 \
--host=x86_64-pc-linux-gnu --target=mingw32 --build=x86_64-pc-linux-gnu \
--disable-altivec --disable-fixed-point --without-ppl --without-cloog --enable-nls \
--without-included-gettext --with-system-zlib --disable-checking --disable-werror \
--enable-secureplt --disable-libmudflap --disable-libssp --disable-libgomp \
--enable-cld --with-python-dir=/share/gcc-data/mingw32/4.4.3/python --disable-libgcj \
--enable-languages=c,c++,fortran --with-sysroot=/usr/mingw32 --disable-bootstrap \
--disable-libgomp --with-bugurl=http://bugs.gentoo.org/ --with-pkgversion='Gentoo \
4.4.3-r2 p1.2' Thread model: win32
gcc version 4.4.3 (Gentoo 4.4.3-r2 p1.2) 

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102435&aid=3057358&group_id=2435



------------------------------

Message: 7
Date: Wed, 01 Sep 2010 10:39:56 +0000
From: SF/projects/mingw notification list
	<mingw-notify@lists.sourceforge.net>
Subject: [MinGW-notify] [ mingw-Bugs-3057358 ] vsnprintf cause
	application	crash on machines with P3 CPU
To: noreply@sourceforge.net
Message-ID: <E1OqkjU-00078w-Fx@sfs-web-6.v29.ch3.sourceforge.com>
Content-Type: text/plain; charset="UTF-8"

Bugs item #3057358, was opened at 2010-09-01 14:38
Message generated for change (Comment added) made by b-s-a
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102435&aid=3057358&group_id=2435

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: mingw runtime
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: b-s-a (b-s-a)
Assigned to: Nobody/Anonymous (nobody)
Summary: vsnprintf cause application crash on machines with P3 CPU

Initial Comment:
This code always cause program error on machine with CPU Intel Pentium III. Replacing \
vsnprintf by _vsnprintf fixes the problem. On P4, Core 2 and AMD Athlon 64 no \
problems.


#include <string>
#include <iostream>
#include <cstdarg>
#include <cstdio>
#include <vector>

std::string formatString(const char *format, ...)
{
    va_list ap1;
    va_list ap2;
    va_start(ap1, format);
    va_copy(ap2, ap1);
    const int size = ::vsnprintf(NULL, 0, format, ap2) + 1;
    va_end(ap2);

    std::vector<char> buffer(size);
    ::vsnprintf(&*buffer.begin(), size, format, ap1);
    va_end(ap1);

    std::string result(buffer.begin(), buffer.end()-1);

    return result;
}

int main()
{
    std::string txt = "some text";
    std::cout << formatString("%s:%u", txt.c_str(), 1235) << std::endl;
    return 0;
}

mingw-runtime versions 3.18 and 3.16

$ mingw32-g++ -v
Using built-in specs.
Target: mingw32
Configured with: /var/tmp/cross/mingw32/portage/cross-mingw32/gcc-4.4.3-r2/work/gcc-4.4.3/configure \
--prefix=/usr --bindir=/usr/x86_64-pc-linux-gnu/mingw32/gcc-bin/4.4.3 \
--includedir=/usr/lib/gcc/mingw32/4.4.3/include \
--datadir=/usr/share/gcc-data/mingw32/4.4.3 \
--mandir=/usr/share/gcc-data/mingw32/4.4.3/man \
--infodir=/usr/share/gcc-data/mingw32/4.4.3/info \
--with-gxx-include-dir=/usr/lib/gcc/mingw32/4.4.3/include/g++-v4 \
--host=x86_64-pc-linux-gnu --target=mingw32 --build=x86_64-pc-linux-gnu \
--disable-altivec --disable-fixed-point --without-ppl --without-cloog --enable-nls \
--without-included-gettext --with-system-zlib --disable-checking --disable-werror \
--enable-secureplt --disable-libmudflap --disable-libssp --disable-libgomp \
--enable-cld --with-python-dir=/share/gcc-data/mingw32/4.4.3/python --disable-libgcj \
--enable-languages=c,c++,fortran --with-sysroot=/usr/mingw32 --disable-bootstrap \
--disable-libgomp --with-bugurl=http://bugs.gentoo.org/ --with-pkgversion='Gentoo \
4.4.3-r2 p1.2' Thread model: win32
gcc version 4.4.3 (Gentoo 4.4.3-r2 p1.2) 

----------------------------------------------------------------------

> Comment By: b-s-a (b-s-a)
Date: 2010-09-01 14:39

Message:
gdb detects SIGILL when executing this call.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102435&aid=3057358&group_id=2435



------------------------------

Message: 8
Date: Wed, 01 Sep 2010 10:46:14 +0000
From: SF/projects/mingw notification list
	<mingw-notify@lists.sourceforge.net>
Subject: [MinGW-notify] [ mingw-Bugs-3057358 ] vsnprintf cause
	application	crash on machines with P3 CPU
To: noreply@sourceforge.net
Message-ID: <E1Oqkpa-0007H7-8k@sfs-web-3.v29.ch3.sourceforge.com>
Content-Type: text/plain; charset="UTF-8"

Bugs item #3057358, was opened at 2010-09-01 14:38
Message generated for change (Comment added) made by b-s-a
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102435&aid=3057358&group_id=2435

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: mingw runtime
Group: None
> Status: Closed
> Resolution: Invalid
Priority: 5
Private: No
Submitted By: b-s-a (b-s-a)
Assigned to: Nobody/Anonymous (nobody)
Summary: vsnprintf cause application crash on machines with P3 CPU

Initial Comment:
This code always cause program error on machine with CPU Intel Pentium III. Replacing \
vsnprintf by _vsnprintf fixes the problem. On P4, Core 2 and AMD Athlon 64 no \
problems.


#include <string>
#include <iostream>
#include <cstdarg>
#include <cstdio>
#include <vector>

std::string formatString(const char *format, ...)
{
    va_list ap1;
    va_list ap2;
    va_start(ap1, format);
    va_copy(ap2, ap1);
    const int size = ::vsnprintf(NULL, 0, format, ap2) + 1;
    va_end(ap2);

    std::vector<char> buffer(size);
    ::vsnprintf(&*buffer.begin(), size, format, ap1);
    va_end(ap1);

    std::string result(buffer.begin(), buffer.end()-1);

    return result;
}

int main()
{
    std::string txt = "some text";
    std::cout << formatString("%s:%u", txt.c_str(), 1235) << std::endl;
    return 0;
}

mingw-runtime versions 3.18 and 3.16

$ mingw32-g++ -v
Using built-in specs.
Target: mingw32
Configured with: /var/tmp/cross/mingw32/portage/cross-mingw32/gcc-4.4.3-r2/work/gcc-4.4.3/configure \
--prefix=/usr --bindir=/usr/x86_64-pc-linux-gnu/mingw32/gcc-bin/4.4.3 \
--includedir=/usr/lib/gcc/mingw32/4.4.3/include \
--datadir=/usr/share/gcc-data/mingw32/4.4.3 \
--mandir=/usr/share/gcc-data/mingw32/4.4.3/man \
--infodir=/usr/share/gcc-data/mingw32/4.4.3/info \
--with-gxx-include-dir=/usr/lib/gcc/mingw32/4.4.3/include/g++-v4 \
--host=x86_64-pc-linux-gnu --target=mingw32 --build=x86_64-pc-linux-gnu \
--disable-altivec --disable-fixed-point --without-ppl --without-cloog --enable-nls \
--without-included-gettext --with-system-zlib --disable-checking --disable-werror \
--enable-secureplt --disable-libmudflap --disable-libssp --disable-libgomp \
--enable-cld --with-python-dir=/share/gcc-data/mingw32/4.4.3/python --disable-libgcj \
--enable-languages=c,c++,fortran --with-sysroot=/usr/mingw32 --disable-bootstrap \
--disable-libgomp --with-bugurl=http://bugs.gentoo.org/ --with-pkgversion='Gentoo \
4.4.3-r2 p1.2' Thread model: win32
gcc version 4.4.3 (Gentoo 4.4.3-r2 p1.2) 

----------------------------------------------------------------------

> Comment By: b-s-a (b-s-a)
Date: 2010-09-01 14:46

Message:
Invalid compile flags were passed while building mingw-runtime
(-march=core2).

----------------------------------------------------------------------

Comment By: b-s-a (b-s-a)
Date: 2010-09-01 14:39

Message:
gdb detects SIGILL when executing this call.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=102435&aid=3057358&group_id=2435



------------------------------

------------------------------------------------------------------------------
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd

------------------------------

_______________________________________________
MinGW-notify mailing list
MinGW-notify@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-notify


End of MinGW-notify Digest, Vol 52, Issue 1
*******************************************


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic