acl/lib_fiber/samples-c++1x/go_fiber/main.cpp

76 lines
1.2 KiB
C++
Raw Normal View History

#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
static void fiber1(void)
{
printf("in fiber: %d\r\n", acl::fiber::self());
}
static void fiber2(int n, const char* s)
{
printf("in fiber: %d, n: %d, s: %s\r\n", acl::fiber::self(), n, s);
}
static void fiber3(acl::string& buf)
{
printf("in fiber: %d, buf: %s\r\n", acl::fiber::self(), buf.c_str());
buf = "world";
}
static void fiber4(const acl::string& buf)
{
printf("in fiber: %d, buf: %s\r\n", acl::fiber::self(), buf.c_str());
}
//////////////////////////////////////////////////////////////////////////////
static void usage(const char* procname)
{
printf("usage: %s -h [help] -n fibers_count\r\n", procname);
}
int main(int argc, char *argv[])
{
int ch, n = 10;
acl::acl_cpp_init();
acl::log::stdout_open(true);
while ((ch = getopt(argc, argv, "hn:")) > 0) {
switch (ch) {
case 'h':
usage(argv[0]);
return 0;
case 'n':
n = atoi(optarg);
break;
default:
break;
}
}
go fiber1;
go[=] {
fiber2(n, "hello world");
};
acl::string buf("hello");
go[&] {
fiber3(buf);
};
go[&] {
fiber4(buf);
};
go[=] {
fiber4(buf);
};
acl::fiber::schedule();
return 0;
}