|
|
| version 1.3, 2014/01/28 16:58:33 | version 1.3.4.2, 2014/05/21 22:03:08 |
|---|---|
| Line 8 | Line 8 |
| #include <sys/stat.h> | #include <sys/stat.h> |
| #include <sys/socket.h> | #include <sys/socket.h> |
| #include <netinet/in.h> | #include <netinet/in.h> |
| #include "../inc/config.h" | |
| #include <aitsched.h> | #include <aitsched.h> |
| intptr_t Kill; | intptr_t Kill; |
| Line 38 void *r(sched_task_t *arg) | Line 37 void *r(sched_task_t *arg) |
| rlen = read(TASK_FD(arg), buf, sizeof buf); | rlen = read(TASK_FD(arg), buf, sizeof buf); |
| printf("read:: RET=%d FLAG=0x%lx rlen=%d bytes readed = %s\n", | printf("read:: RET=%d FLAG=0x%lx rlen=%d bytes readed = %s\n", |
| TASK_RET(arg), TASK_FLAG(arg), rlen, buf); | (int) TASK_RET(arg), TASK_FLAG(arg), (int) rlen, buf); |
| for (rlen = 0; rlen < TASK_RET(arg); rlen++) | for (rlen = 0; rlen < TASK_RET(arg); rlen++) |
| printf("buf[%d]=%c\n", rlen, buf[rlen]); | printf("buf[%d]=%c\n", rlen, buf[rlen]); |
| Kill++; | Kill++; |
| Line 47 void *r(sched_task_t *arg) | Line 46 void *r(sched_task_t *arg) |
| void *w(sched_task_t *arg) | void *w(sched_task_t *arg) |
| { | { |
| printf("write:: RET=%d FLAG=0x%lx\n", TASK_RET(arg), TASK_FLAG(arg)); | printf("write:: RET=%d FLAG=0x%lx\n", (int) TASK_RET(arg), TASK_FLAG(arg)); |
| taskExit(arg, NULL); | taskExit(arg, NULL); |
| } | } |
| Line 101 main(int argc, char **argv) | Line 100 main(int argc, char **argv) |
| f = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); | f = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP); |
| if (f == -1) | if (f == -1) |
| return 1; | return 1; |
| #ifndef __linux__ | |
| sin.sin_len = sizeof sin; | sin.sin_len = sizeof sin; |
| #endif | |
| sin.sin_family = AF_INET; | sin.sin_family = AF_INET; |
| sin.sin_port = htons(2345); | sin.sin_port = htons(2345); |
| sin.sin_addr.s_addr = INADDR_ANY; | sin.sin_addr.s_addr = INADDR_ANY; |
| Line 156 main(int argc, char **argv) | Line 157 main(int argc, char **argv) |
| } | } |
| if (!schedThread(root, thr, "mdaaaa this is thread task", 8192, NULL, 0)) { | if (!schedThread(root, thr, "mdaaaa this is thread task", 8192, NULL, 0)) { |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 7; | printf("stack is too small\n"); |
| } | } |
| if (!schedThread(root, thr, "mdaaaa this is thread task -detached", 131072, NULL, 0)) { | if (!schedThread(root, thr, "mdaaaa this is thread task -detached", 131072, NULL, 0)) { |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| Line 178 main(int argc, char **argv) | Line 179 main(int argc, char **argv) |
| } | } |
| if (!schedThread(root, thr, "mdaaaa this is thread task -j3", 4096, NULL, 0)) { | if (!schedThread(root, thr, "mdaaaa this is thread task -j3", 4096, NULL, 0)) { |
| printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); | printf("Error:: #%d - %s\n", sched_GetErrno(), sched_GetError()); |
| return 7; | printf("stack is too small\n"); |
| } | } |
| sleep(1); | sleep(1); |
| schedCancel(t); | schedCancel(t); |