view ppe/PadUpdate.cc @ 26:6bea374ee604

global alloc test.
author koba <koba@cr.ie.u-ryukyu.ac.jp>
date Fri, 10 Dec 2010 02:20:37 +0900
parents
children
line wrap: on
line source

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

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

static int
run(SchedTask *s, void *rbuf, void *wbuf)
{

    void *idata = s->get_input(rbuf, 0);
    int pad_id = (int)s->get_param(0);
    int size = (int)s->get_param(1);
    void *global_data = (void*)s->global_get(pad_id);

    memcpy(global_data,idata,size);

    return 0;
}