751
|
1 #include <stdio.h>
|
|
2 #include "DataUpdate.h"
|
|
3 #include "Func.h"
|
|
4 #include "string.h"
|
|
5
|
|
6 /* これは必須 */
|
|
7 SchedDefineTask(DataUpdate);
|
|
8
|
|
9 static int
|
|
10 run(SchedTask *s, void *rbuf, void *wbuf)
|
|
11 {
|
985
|
12
|
|
13 long count = (long)s->get_param(0);
|
|
14 long id_base = (long)s->get_param(1);
|
|
15 for(int i=0; i<count; i++) {
|
|
16 void *idata = (void*)s->get_input(rbuf, i);
|
|
17 long size = (long)s->get_inputSize(i);
|
|
18 void *global_data = (void*)s->global_get(id_base+i);
|
|
19 memcpy(global_data,idata,size);
|
|
20 }
|
751
|
21
|
|
22 return 0;
|
|
23 }
|