consumer « pthread « C Q&A

Home
C Q&A
1.assembly
2.buffer
3.Card
4.Cast
5.compile
6.console
7.const
8.constructor
9.database
10.Date
11.Debug
12.Design
13.Development
14.DLL
15.encrypt
16.enum
17.eof
18.Event
19.fork
20.Format
21.gcc
22.gdb
23.graph
24.graphics
25.gui
26.Holiday Event
27.image
28.IP
29.iterator
30.macro
31.makefile
32.malloc
33.Menu
34.mysql
35.network
36.openssl
37.operator
38.password
39.pipe
40.preprocessor
41.printf
42.pthread
43.Regular expression
44.scanf
45.semaphore
46.SerialPort
47.server
48.Socket
49.sql
50.SQLserver
51.sscanf
52.std
53.stdin
54.stdout
55.stl
56.strcmp
57.stream
58.switch
59.Template
60.thread
61.timer
62.unix
63.video
64.Virtual
65.visualstudio
66.winapi
67.windows
68.xml
C Q&A » pthread » consumer 

1. pthreads producer-consumer deadlock    stackoverflow.com

I wrote following code:

void *produce(void* arg)
{
 buffer* buff = (buffer *) arg;
 while (1)
 {
  pthread_mutex_lock(&mutex);
  if (elements_produced == JOB_SIZE)
  {
   pthread_mutex_unlock(&mutex);
   pthread_exit(NULL);
  ...

2. producer-consumer problem with pthreads    stackoverflow.com

I'm attempting to solve the producer-consumer problem using pthreads and semaphores, but it looks like the producer threads aren't producing, and the consumer threads aren't consuming. It appears that the threads ...

3. My Posix Thread wakes up without a signal    stackoverflow.com

I'm trying to implement a blocking queue using POSIX threads. Important code segments are shown below. I tried to run this program. The thread trying to remove an element from the ...

4. pthread producer consumer problem    cboard.cprogramming.com

hi all, I am learing pthreads. I am trying to implement producer/consumer(5producers,5consumers) problem with buffer size=10. given below is the program written using pthreds. (os is redhat linux9) Code: #include int counter=0; int max=10; pthread_mutex_t counter_mutex= PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t condp_mutex= PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t condc_mutex= PTHREAD_MUTEX_INITIALIZER; pthread_cond_t condVarProd= PTHREAD_COND_INITIALIZER; pthread_cond_t condVarCons= PTHREAD_COND_INITIALIZER; void *prodfun(); void *consfun(); main() { pthread_t prothr[10],conthr[10]; int i; for(i=0; i<5; ...

5. pthread producer/consumer    cboard.cprogramming.com

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.