atomic_scoped_ptr_test.cpp
1 #define msecsleep(x) (x)
2 
3 //#include "xtime.h"
4 
5 #include "support.h"
6 
7 #include <stdint.h>
8 #include <thread>
9 
10 //
11 //#ifndef HAVE_CAS_2
12 //inline bool atomicCompareAndSet2(
13 // uint32_t oldv0, uint32_t oldv1,
14 // uint32_t newv0, uint32_t newv1, uint32_t *target ) {
15 // assert(oldv0 == target[0]);
16 // assert(oldv1 == target[1]);
17 // if(rand() > RAND_MAX/2) {
18 // target[0] = newv0;
19 // target[1] = newv1;
20 // return true;
21 // }
22 // return false;
23 // }
24 //#endif
25 
26 #include "atomic_smart_ptr.h"
27 #include "xthread.cpp"
28 
29 atomic<int> objcnt = 0;
30 
31 class A {
32 public:
33  A(int x) : m_x(x) {
34 // fprintf(stdout, "c", x);
35  ++objcnt;
36  }
37  virtual ~A() {
38 // fprintf(stdout, "d", m_x);
39  --objcnt;
40  }
41  virtual int x() const {return m_x;}
42 
43 int m_x;
44 };
45 class B : public A {
46 public:
47  B(int x) : A(x) {
48 // fprintf(stdout, "C");
49  }
50  ~B() {
51 // fprintf(stdout, "D");
52  }
53  virtual int x() const {return -m_x;}
54  virtual int xorg() const {return m_x;}
55 };
56 
57 
58 atomic_unique_ptr<A> gp1, gp2, gp3;
59 
60 void
61 start_routine(void) {
62  for(int i = 0; i < 1000000; i++) {
63  atomic_unique_ptr<A> p1(new A(1));
64  atomic_unique_ptr<A> p2(new B(2));
66 
67 
68  p2.swap(gp1);
69  gp2.reset(new A(51));
70  gp3.reset(new A(3));
71 
72  gp3.reset();
73  p2.swap(p3);
74 
75  p2.reset();
76  p2.swap(gp1);
77  }
78 }
79 
80 #define NUM_THREADS 4
81 
82 int
83 main(int argc, char **argv)
84 {
85 std::thread threads[NUM_THREADS];
86 
87  for(int i = 0; i < NUM_THREADS; i++) {
88  std::thread th( &start_routine);
89  threads[i].swap(th);
90  }
91  for(int i = 0; i < NUM_THREADS; i++) {
92  threads[i].join();
93  }
94  gp1.reset();
95  gp2.reset();
96  gp3.reset();
97  if(objcnt != 0) {
98  printf("failed\n");
99  return -1;
100  }
101  printf("succeeded\n");
102  return 0;
103 }

Generated for KAME4 by  doxygen 1.8.3