view example/Null/ppe/NullTask.cc @ 2048:6796d85f3d6b draft

remove error
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Thu, 28 Jan 2016 00:05:49 +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;
}