aboutsummaryrefslogtreecommitdiff
path: root/parallel/cig_smoker_problem_stm.c
blob: a16778936450a169e7b8e7a348c2ac31a24c1913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <pthread.h>
#include <immintrin.h>

#include <assert.h>


enum thrd_ids {
  AGENT_A = 0,
  AGENT_B,
  AGENT_C,
  SMOKER_T,
  SMOKER_P,
  SMOKER_M,
  THRD_MAX
};

static pthread_t thrds[THRD_MAX];

/* memory shared by all threads */
/* only atomic operations are allowed */
static unsigned int agent_tasks = 0;
static unsigned int tobacco = 0;
static unsigned int paper = 0;
static unsigned int match = 0;


static void *agenta_thread(void *args)
{
  while (1) {
    __transaction_atomic {
      if (agent_tasks > 0) {
        agent_tasks--;
        tobacco++; paper++;
      }
    }
    printf("AGENT_A: +1 TOBACCO , +1 PAPER\n");
    sleep( random() % 5 );
  }
  return NULL;
}

static void *agentb_thread(void *args)
{
  while (1) {
    __transaction_atomic {
      if (agent_tasks > 0) {
        agent_tasks--;
        paper++; match++;
      }
    }
    printf("AGENT_B: +1 PAPER, +1 MATCH\n");
    sleep( random() % 5 );
  }
  return NULL;
}

static void *agentc_thread(void *args)
{
  while (1) {
    __transaction_atomic {
      if (agent_tasks > 0) {
        agent_tasks--;
        tobacco++; match++;
      }
    }
    printf("AGENT_C: +1 TOBACCO, +1 MATCH\n");
    sleep( random() % 5 );
  }
  return NULL;
}

static void *smokerm_thread(void *args)
{
  while (1) {
    __transaction_atomic {
      if (tobacco > 0 && paper > 0) {
        agent_tasks++;
        tobacco--; paper--;
      }
    }
    printf("SMOKER_M: -1 TOBACCO, -1 PAPER\n");
    sleep( random() % 5 );
  }
  return NULL;
}

static void *smokert_thread(void *args)
{
  while (1) {
    __transaction_atomic {
      if (paper > 0 && match > 0) {
        agent_tasks++;
        paper--; match--;
      }
    }
    printf("SMOKER_T: -1 PAPER, -1 MATCH\n");
    sleep( random() % 5 );
  }
  return NULL;
}

static void *smokerp_thread(void *args)
{
  while (1) {
    __transaction_atomic {
      if (tobacco > 0 && match > 0) {
        agent_tasks++;
        tobacco--; match--;
      }
    }
    printf("SMOKER_P: -1 TOBACCO, -1 MATCH\n");
    sleep( random() % 5 );
  }
  return NULL;
}

int
main(int argc, char *argv[])
{
  assert( pthread_create(&thrds[AGENT_A], NULL, agenta_thread, NULL) == 0 );
  assert( pthread_create(&thrds[AGENT_B], NULL, agentb_thread, NULL) == 0 );
  assert( pthread_create(&thrds[AGENT_C], NULL, agentc_thread, NULL) == 0 );
  assert( pthread_create(&thrds[SMOKER_M], NULL, smokerm_thread, NULL) == 0 );
  assert( pthread_create(&thrds[SMOKER_T], NULL, smokert_thread, NULL) == 0 );
  assert( pthread_create(&thrds[SMOKER_P], NULL, smokerp_thread, NULL) == 0 );

  while (1) {
    unsigned char succ = 0;
    unsigned int t_tasks, t_tobacco, t_paper, t_match;
    sleep(1);
    __transaction_atomic {
      t_tasks = agent_tasks;
      t_tobacco = tobacco;
      t_paper = paper;
      t_match = match;
      succ = 1;
    }
    if (succ == 1) {
      printf("*** STATUS: %u agent_tasks , %u tobacco , %u paper , %u matches\n", t_tasks, t_tobacco, t_paper, t_match);
    } else {
      printf("*** ATOMIC OPERATIONS NOT EXECUTED ***\n");
    }
  }
  return 0;
}