POSIX lib and MS Visual Studio 2005 Programming Software Development by efp1225 I am trying to include the posix library in my Visual Studio 2005 projects, and I am …unsure how to include it. I have the posix.lib file and I added it to the additional dependencies… Re: POSIX lib and MS Visual Studio 2005 Programming Software Development by Zabbat where did you find it on that page? i can't find the posix lib for windows. thank you. Posix Timers Programming Software Development by mailsteam 1.I'm Using Posix Timers. I Would Like To Kno Whether It Is Possible … Posix specification Community Center by vl4kn0 Has someone here got posix specification? It would be in PDF format. Thanks POSIX Message Queue Programming Software Development by xyzt Hello, I try to use POSIX Message Queue API and in the doc it says that: [… Re: POSIX Message Queue Programming Software Development by Salem … updated to use void*, rather than the historic char*. But POSIX seems to be sticking with the old for now. Re: POSIX Message Queue Programming Software Development by kbatra … to send a pointer to a class object via a POSIX message queue. It is giving me strange results and perhaps… POSIX mq_receive issue Programming Software Development by katwalatapan Hello, I tried to compile a posix mq_send and mq_receive application. The msg is sent on the … POSIX message queue error in mq_receive() Programming Software Development by katwalatapan … a reason why data could not be received from a POSIX message queue using mq_receive(), called from a different file. Following… Re: POSIX Message Queue Programming Software Development by xyzt … to send a pointer to a class object via a POSIX message queue. It is giving me strange results and perhaps… Re: POSIX Message Queue Programming Software Development by kbatra …-declared size), after that I got successful transactions because the posix message queues could copy all of the data into the… POSIX semaphores causing "unknown error" Programming Software Development by bleedi Hi, I was programming with POSIX threads and I was using semaphores. All of a sudden … posix threads pthreads Programming Software Development by willyah Am a beginner in Pthread. How do I write a parallel program using posix threads pthreads (pthread.h) to calculate the time needed to calculate the dot product of two vectors using 1,2,4,8 threads. System V to POSIX Semaphore Wrapper Programming Software Development by pikpik …assumes that the semaphore implementation will be a modern POSIX one[3] but the operating system's semaphores are…in a way that will present "modern" POSIX semaphores to the library I'm porting. A caveat… system [url]http://www.minix3.org/[/url] 3. POSIX Semaphores [url]http://www.opengroup.org/onlinepubs/009695399/basedefs/semaphore… Visual Studio 2005 & POSIX threads Programming Software Development by nanodano … looking for information on threading, and I found information on POSIX pthreads. Apparently, Visual Studio 2005 does not have [INLINECODE]pthreads… exec() POSIX calls Programming Software Development by michinobu_zoned … that one, someone gave me the documentation to the the POSIX calls, but they were vague and weren't too descriptive… How to implement a POSIX threaded program to solve producer/consumer problem Programming Software Development by cy163 …. Hence, I put the code for data processing in a POSIX thread (i am using Red Hat enterpriese linux AS 4… Re: How to implement a POSIX threaded program to solve producer/consumer problem Programming Software Development by ArkM … get some time-out to experiment with possible solutions (no POSIX threads in my ready-to-use toolkit at the present… Replace using POSIX regular expressions Programming Software Development by TkTkorrovi … expect in that case. The string size is restricted in POSIX regular expressions to the size of the int, approximately 32… Problem working with POSIX threads Programming Software Development by katwalatapan … follows, a number of errors occur. Am I installing the POSIX files in the wrong directory or is there some other… "Message too long" error in POSIX messaging queue Programming Software Development by katwalatapan Hello everyone, While implementing POSIX messaging queue, I am encountered with "Message too long … How do you make POSIX threads interact with a sorting algorithm? Programming Software Development by neodregan I want to try to understand the method of using POSIX threads to interact with a sorting algorithm such as the … Need Help With POSIX Test Suite from TUXERA Hardware and Software Linux and Unix by BLUEC0RE …, please do! Suite -> [url]http://www.tuxera.com/community/posix-test-suite/[/url] Chris Re: POSIX lib and MS Visual Studio 2005 Programming Software Development by Ancient Dragon where did you get that library ? The author of the lib should have provided you with the needed non-standard header files. Re: POSIX lib and MS Visual Studio 2005 Programming Software Development by efp1225 I got the lib from sourceware.org and they did have the include files. After using them I was able to build my project. Thanks!! Re: Posix Timers Programming Software Development by jim mcnamara I should have read this earlier. The answer is no. Unless you are using the Realtime Signal Extension - ie., "realtime signals". The real question is "Why are you doing this?" It's not like there aren't USR signals or realtime signals (lots of them) you can't use. No offense, but you're just creating problems for … Re: Posix Timers Programming Software Development by mailsteam [quote=jim mcnamara;317458]I should have read this earlier. The answer is no. Unless you are using the Realtime Signal Extension - ie., "realtime signals". The real question is "Why are you doing this?" It's not like there aren't USR signals or realtime signals (lots of them) you can't use. No offense, but you're just … Re: POSIX mq_receive issue Programming Software Development by Salem It would be better if you actually posted your actual error message. Rather than saying "an error", hoping we can be a) bothered to run your code b) actually end up with the same error message Neither of these is guaranteed. Re: POSIX mq_receive issue Programming Software Development by katwalatapan Sorry about that. The error that i receive is in the "mq_receive" section that states "message is too long". The data that I am passing to the queue is not large and the msg_size is also sufficient. [QUOTE=Salem;982739]It would be better if you actually posted your actual error message. Rather than saying "an … Re: POSIX mq_receive issue Programming Software Development by Protuberance Try to call [B]mq_getattr[/B] function and check current number of bytes in queue.