10 #include "atomic_smart_ptr.h"
11 #include "xthread.cpp"
25 fprintf(stderr,
" ??%d", (
int)m_x);
33 fprintf(stderr,
" ?%d,%d", (
int)m_x, (
int)total);
35 virtual long x()
const {
return m_x;}
49 virtual long x()
const {
return -m_x;}
50 virtual long xorg()
const {
return m_x;}
59 for(
int i = 0; i < 400000; i++) {
62 assert(p1.use_count() == 1);
100 #define NUM_THREADS 4
103 main(
int argc,
char **argv)
105 std::thread threads[NUM_THREADS];
107 for(
int i = 0; i < NUM_THREADS; i++) {
108 std::thread th( &start_routine);
111 for(
int i = 0; i < NUM_THREADS; i++) {
126 printf(
"succeeded\n");