Rev 2806 | Rev 2808 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 2801 | svoboda | 1 | #include <stdio.h> |
| 2 | #include <unistd.h> |
||
| 3 | #include <ipc/ipc.h> |
||
| 4 | #include "../tester.h" |
||
| 5 | |||
| 2806 | svoboda | 6 | const char *syscall_name[] = { |
| 7 | "sys_io", |
||
| 8 | "sys_tls_set", |
||
| 9 | "sys_thread_create", |
||
| 10 | "sys_thread_exit", |
||
| 11 | "sys_thread_get_id", |
||
| 12 | "sys_task_get_id", |
||
| 13 | "sys_futex_sleep_timeout", |
||
| 14 | "sys_futex_wakeup", |
||
| 15 | "sys_as_area_create", |
||
| 16 | "sys_as_area_resize", |
||
| 17 | "sys_as_area_destroy", |
||
| 18 | "sys_ipc_call_sync_fast", |
||
| 19 | "sys_ipc_call_sync_slow", |
||
| 20 | "sys_ipc_call_async_fast", |
||
| 21 | "sys_ipc_call_async_slow", |
||
| 22 | "sys_ipc_answer_fast", |
||
| 23 | "sys_ipc_answer_slow", |
||
| 24 | "sys_ipc_forward_fast", |
||
| 25 | "sys_ipc_wait_for_call", |
||
| 26 | "sys_ipc_hangup", |
||
| 27 | "sys_ipc_register_irq", |
||
| 28 | "sys_ipc_unregister_irq", |
||
| 29 | "sys_cap_grant", |
||
| 30 | "sys_cap_revoke", |
||
| 31 | "sys_physmem_map", |
||
| 32 | "sys_iospace_enable", |
||
| 33 | "sys_preempt_control", |
||
| 34 | "sys_sysinfo_valid", |
||
| 35 | "sys_sysinfo_value", |
||
| 36 | "sys_debug_enable_console", |
||
| 37 | "sys_ipc_connect_task" |
||
| 38 | }; |
||
| 2801 | svoboda | 39 | |
| 2807 | svoboda | 40 | #define TIDBUF_SIZE 64 |
| 41 | |||
| 2801 | svoboda | 42 | char * test_debug1(bool quiet) |
| 43 | { |
||
| 44 | int taskid; |
||
| 45 | int rc; |
||
| 46 | int phoneid; |
||
| 47 | int i; |
||
| 2805 | svoboda | 48 | unsigned sc_args[6]; |
| 49 | unsigned copied; |
||
| 50 | unsigned ev_type; |
||
| 51 | unsigned sc_id; |
||
| 52 | int sc_rc; |
||
| 2807 | svoboda | 53 | unsigned threadid_buf[TIDBUF_SIZE]; |
| 54 | int tb_copied, tb_needed; |
||
| 2801 | svoboda | 55 | |
| 56 | printf("running debug1 test\n"); |
||
| 57 | taskid = 12; |
||
| 58 | printf("ipc_connect_task(%d)...\n", taskid); |
||
| 59 | rc = ipc_connect_task(taskid); |
||
| 60 | printf("-> %d\n", rc); |
||
| 61 | phoneid = rc; |
||
| 62 | |||
| 63 | printf("send IPC_M_DEBUG_BEGIN message\n"); |
||
| 64 | rc = ipc_call_sync_0_0(phoneid, IPC_M_DEBUG_BEGIN); |
||
| 65 | printf("-> %d\n", rc); |
||
| 66 | |||
| 2807 | svoboda | 67 | printf("send IPC_M_DEBUG_THREAD_READ message\n"); |
| 68 | rc = ipc_call_sync_2_2(phoneid, IPC_M_DEBUG_THREAD_READ, |
||
| 69 | &threadid_buf, TIDBUF_SIZE*sizeof(unsigned), |
||
| 70 | &tb_copied, &tb_needed); |
||
| 71 | printf("-> %d\n", rc); |
||
| 72 | |||
| 73 | printf("thread IDs:"); |
||
| 74 | for (i=0; i<tb_copied / sizeof(unsigned); i++) { |
||
| 75 | printf("%u", threadid_buf[i]); |
||
| 76 | } |
||
| 77 | printf("\ntotal of %u threads\n", tb_needed/sizeof(unsigned)); |
||
| 78 | |||
| 2801 | svoboda | 79 | while (1) { |
| 2807 | svoboda | 80 | rc = ipc_call_sync_1_3(phoneid, IPC_M_DEBUG_GO, threadid_buf[0], |
| 81 | &ev_type, &sc_id, &sc_rc); |
||
| 2805 | svoboda | 82 | if (rc >= 0) { |
| 2807 | svoboda | 83 | rc = ipc_call_sync_3_1(phoneid, IPC_M_DEBUG_ARGS_READ, |
| 84 | threadid_buf[0], sc_args, 6 * sizeof(unsigned), &copied); |
||
| 85 | } |
||
| 86 | if (rc >= 0) { |
||
| 2806 | svoboda | 87 | printf("%s[%d](%u, %u, %u, %u, %u, %u) -> %d\n", |
| 88 | syscall_name[sc_id], sc_id, |
||
| 2805 | svoboda | 89 | sc_args[0], sc_args[1], sc_args[2], |
| 90 | sc_args[3], sc_args[4], sc_args[5], |
||
| 91 | sc_rc); |
||
| 92 | } |
||
| 2801 | svoboda | 93 | } |
| 94 | |||
| 95 | printf("done\n"); |
||
| 96 | return NULL; |
||
| 97 | } |