view example/Null/spe/NullTask.cc @ 1710:d32d5659695a draft

run gpu example
author Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
date Tue, 08 Oct 2013 18:05:11 +0900
parents e38a4f3e238d
children
line wrap: on
line source

#include <stdio.h>
#include <math.h>
#include "SchedTask.h"
#include "NullTask.h"
#include "Func.h"

SchedDefineTask1(NullTask, nullTask);

	static int
nullTask(SchedTask *smanager, void *rbuf, void *wbuf)
{
	return 0;
}