view example/dependency_task/ppe/Print.cc @ 1130:5addc6c1d5c4 draft

fix.
author root@dolphins.cr.ie.u-ryukyu.ac.jp
date Sun, 13 Feb 2011 22:34:44 +0900
parents 94d82f2c842f
children
line wrap: on
line source

#include <stdio.h>
#include <string.h>
#include "Print.h"
#include "Func.h"

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

static int
run(SchedTask *s, void *rbuf, void *wbuf)
{
    int *idata = (int*)s->get_input(rbuf, 0);
    long length = (long)s->get_param(0);

    s->printf("[TASK_PRINT]\n");
    for (int i = 0; i < length; i++) {
	s->printf("%2d ", idata[i]);
    }
    s->printf("\n");

    return 0;
}