mirror of
https://github.com/Tencent/libco.git
synced 2025-05-09 04:01:09 +08:00
70 lines
1.1 KiB
C++
70 lines
1.1 KiB
C++
#include "co_closure.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <vector>
|
|
#include <pthread.h>
|
|
#include <unistd.h>
|
|
using namespace std;
|
|
|
|
static void *thread_func( void * arg )
|
|
{
|
|
stCoClosure_t *p = (stCoClosure_t*) arg;
|
|
p->exec();
|
|
return 0;
|
|
}
|
|
static void batch_exec( vector<stCoClosure_t*> &v )
|
|
{
|
|
vector<pthread_t> ths;
|
|
for( size_t i=0;i<v.size();i++ )
|
|
{
|
|
pthread_t tid;
|
|
pthread_create( &tid,0,thread_func,v[i] );
|
|
ths.push_back( tid );
|
|
}
|
|
for( size_t i=0;i<v.size();i++ )
|
|
{
|
|
pthread_join( ths[i],0 );
|
|
}
|
|
}
|
|
int main( int argc,char *argv[] )
|
|
{
|
|
vector< stCoClosure_t* > v;
|
|
|
|
int total = 100;
|
|
vector<int> v2;
|
|
co_ref( ref,total,v2 );
|
|
for(int i=0;i<10;i++)
|
|
{
|
|
co_func( f,ref,i )
|
|
{
|
|
printf("ref.total %d i %d\n",ref.total,i );
|
|
//lock
|
|
ref.v2.push_back( i );
|
|
//unlock
|
|
}
|
|
co_func_end;
|
|
v.push_back( new f( ref,i ) );
|
|
}
|
|
for(int i=0;i<2;i++)
|
|
{
|
|
co_func( f2,i )
|
|
{
|
|
printf("i: %d\n",i);
|
|
for(int j=0;j<2;j++)
|
|
{
|
|
usleep( 1000 );
|
|
printf("i %d j %d\n",i,j);
|
|
}
|
|
}
|
|
co_func_end;
|
|
v.push_back( new f2( i ) );
|
|
}
|
|
|
|
batch_exec( v );
|
|
printf("done\n");
|
|
|
|
return 0;
|
|
}
|
|
|
|
|