I do not care about being a cpu hog as I have one thread assigned to each core and the system threads blocked off to their own set. My understanding is that mutex is of use when other tasks are to run, in this case that is not important so I am considering having a consumer thread loop on an address in memory waiting for its value to be non zero - as in the single producer thread that is looping recv()ing with TCP_NONBLOCK set just deposited information and it is now non zero.
Is my implantation a smart one given my circumstances or should I be using a mutex or custom interrupt even though no other tasks will run.
recvin a loop withTCP_NONBLOCK. Just use a blockingrecvunless you have something else to do in the loop between retries, but since you're using threads, you shouldn't have to do that. – R.. Jun 11 '12 at 23:35