mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
101 lines
2.1 KiB
C
101 lines
2.1 KiB
C
#include "lib_acl.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include "fiber/lib_fiber.h"
|
|
#include "stamp.h"
|
|
|
|
static int __max_loop = 1000;
|
|
static int __max_fiber = 1000;
|
|
|
|
static __thread struct timeval __begin;
|
|
static __thread int __left_fiber = 1000;
|
|
|
|
static void fiber_main(ACL_FIBER *fiber, void *ctx acl_unused)
|
|
{
|
|
int i;
|
|
|
|
errno = acl_fiber_errno(fiber);
|
|
for (i = 0; i < __max_loop; i++) {
|
|
acl_fiber_yield();
|
|
if (i <= 2)
|
|
printf("fiber-%d, errno: %d\r\n",
|
|
acl_fiber_id(fiber), errno);
|
|
}
|
|
|
|
if (--__left_fiber == 0) {
|
|
long long count = __max_fiber * __max_loop;
|
|
struct timeval end;
|
|
double spent;
|
|
|
|
gettimeofday(&end, NULL);
|
|
spent = stamp_sub(&end, &__begin);
|
|
printf("fibers: %d, count: %lld, spent: %.2f, speed: %.2f\r\n",
|
|
__max_fiber, count, spent,
|
|
(count * 1000) / (spent > 0 ? spent : 1));
|
|
}
|
|
}
|
|
|
|
static void *thread_main(void *ctx acl_unused)
|
|
{
|
|
int i;
|
|
|
|
gettimeofday(&__begin, NULL);
|
|
__left_fiber = __max_fiber;
|
|
|
|
printf("thread: %lu\r\n", (unsigned long) acl_pthread_self());
|
|
for (i = 0; i < __max_fiber; i++)
|
|
acl_fiber_create(fiber_main, NULL, 32768);
|
|
|
|
acl_fiber_schedule();
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static void usage(const char *procname)
|
|
{
|
|
printf("usage: %s -h [help] -n max_loop -m max_fiber -t max_threads\r\n", procname);
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int ch, i, nthreads = 1;
|
|
acl_pthread_attr_t attr;
|
|
acl_pthread_t *tids;
|
|
|
|
while ((ch = getopt(argc, argv, "hn:m:t:")) > 0) {
|
|
switch (ch) {
|
|
case 'h':
|
|
usage(argv[0]);
|
|
return 0;
|
|
case 'n':
|
|
__max_loop = atoi(optarg);
|
|
break;
|
|
case 'm':
|
|
__max_fiber = atoi(optarg);
|
|
break;
|
|
case 't':
|
|
nthreads = atoi(optarg);
|
|
if (nthreads <= 0)
|
|
nthreads = 1;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
acl_pthread_attr_init(&attr);
|
|
tids = (acl_pthread_t *) acl_mycalloc(nthreads, sizeof(acl_pthread_t));
|
|
|
|
for (i = 0; i < nthreads; i++)
|
|
acl_pthread_create(&tids[i], &attr, thread_main, NULL);
|
|
|
|
for (i = 0; i < nthreads; i++)
|
|
acl_pthread_join(tids[i], NULL);
|
|
|
|
acl_myfree(tids);
|
|
|
|
return 0;
|
|
}
|