view example/share_task/spe/Exec.cc @ 467:44c0bce54dcf

fix all examples. test_render is not working now.
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 01 Oct 2009 19:25:25 +0900
parents 58fd16298954
children ab866bc8a624
line wrap: on
line source

#include <stdio.h>
#include "Exec.h"
#include "Func.h"

/* これは必須 */
SchedDefineTask(Exec);

static int
run(SchedTask *s, void *rbuf, void *wbuf)
{
    int *idata = (int*)s->global_get(DATA_ID);
    int length = s->get_param(0);
    int number = s->get_param(1);
    int calnum = s->get_param(2);

    s->printf("[TASK_EXEC %02d] ", number);
    for (int i = 0; i < length; i++) {
	idata[i] += calnum;
	s->printf("%03d ", idata[i]);
    }
    s->printf("\n");

    return 0;
}