pthreads-win32 Questions

1

Solved

I would like to statically link "pthreads for Win32" with my application, compiled with MinGW32 so the app won't need pthreadGC2.dll to run. I'm using the latest release of pthreads - 2.9.1, downl...
Secunda asked 29/8, 2016 at 22:4

1

The simple test: void testMemoryLeak_PthreadCreateJoin(void) { auto taskFunction = [](void*args) -> void* { return nullptr; }; pthread_t pth; int err = pthread_create(&pth, /*attr*/nu...
Dorotheadorothee asked 9/12, 2016 at 9:56

2

Solved

I'm using Pthreads with MinGW on Windows. A call to pthread_create returns a error which translates to "Not enough space". What kind of space does it refer to? Is the thread stack space? int scann...
Kep asked 17/5, 2013 at 9:39

1

Solved

I'm using the pthreads extension for PHP. When I execute the PHP script from cmd on Windows I get parallel threads but when I call the same script from Apache I get a different result and it seems ...
Judicatory asked 1/3, 2013 at 11:21

3

Solved

I'm using pthreads-win32 to allow threading support for windows. I have a cross platform project that uses pthreads and I want to make it work on windows with various compilers and different OS ve...
Vogeley asked 9/5, 2010 at 13:6
1

© 2022 - 2024 — McMap. All rights reserved.