view example/share_task/ppe/Exec.cc @ 639:70c5c2d2eb24

fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 19 Nov 2009 18:45:24 +0900
parents 60aa3f241b10
children
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);
    long length = (long)s->get_param(0);
    long number = (long)s->get_param(1);
    long calnum = (long)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;
}