Rev 2920 | Rev 3471 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2920 | Rev 2946 | ||
---|---|---|---|
Line 91... | Line 91... | ||
91 | { |
91 | { |
92 | return async_req_3_0(phoneid, IPC_M_DEBUG_ALL, UDEBUG_M_REGS_WRITE, |
92 | return async_req_3_0(phoneid, IPC_M_DEBUG_ALL, UDEBUG_M_REGS_WRITE, |
93 | tid, (sysarg_t)buffer); |
93 | tid, (sysarg_t)buffer); |
94 | } |
94 | } |
95 | 95 | ||
96 | int udebug_go(int phoneid, thash_t tid, int *ev_type, int *val0, int *val1) |
96 | int udebug_go(int phoneid, thash_t tid, udebug_event_t *ev_type, |
- | 97 | sysarg_t *val0, sysarg_t *val1) |
|
97 | { |
98 | { |
98 | return async_req_2_3(phoneid, IPC_M_DEBUG_ALL, UDEBUG_M_GO, |
99 | return async_req_2_3(phoneid, IPC_M_DEBUG_ALL, UDEBUG_M_GO, |
99 | tid, (sysarg_t)ev_type, (sysarg_t)val0, (sysarg_t)val1); |
100 | tid, (sysarg_t)ev_type, (sysarg_t)val0, (sysarg_t)val1); |
100 | } |
101 | } |
101 | 102 |