view TaskManager/kernel/sys_task/StartProfile.cc @ 2069:26aa08c9a1de draft default tip

cuda example fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 12 Feb 2017 10:04:55 +0900
parents a07d4773012d
children
line wrap: on
line source

#include "StartProfile.h"
#include "SchedTask.h"
//#include "stdio.h"

SchedDefineTask(StartProfile);

static int
run(SchedTask *smanager, void *rbuf, void *wbuf)
{
    smanager->start_profile();
    return 0;
}