Changeset 2e3355a in mainline
- Timestamp:
- 2008-09-20T11:43:36Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3b8fe85
- Parents:
- 94e152a
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc64/loader/Makefile
r94e152a r2e3355a 105 105 $(USPACEDIR)/app/tetris/tetris \ 106 106 $(USPACEDIR)/app/tester/tester \ 107 $(USPACEDIR)/app/trace/trace \ 107 108 $(USPACEDIR)/app/bdsh/bdsh \ 108 109 $(USPACEDIR)/app/klog/klog -
uspace/app/trace/ipcp.c
r94e152a r2e3355a 288 288 oper = pcall->oper; 289 289 290 if (oper != NULL && oper->rv_type != V_VOID || oper->respc > 0) {290 if (oper != NULL && (oper->rv_type != V_VOID || oper->respc > 0)) { 291 291 printf("->"); 292 292 -
uspace/lib/libc/generic/task.c
r94e152a r2e3355a 124 124 * @return ID of the newly created task or zero on error. 125 125 */ 126 task_id_t task_spawn(const char *path, c onst char *argv[])126 task_id_t task_spawn(const char *path, char *const argv[]) 127 127 { 128 128 int phone_id; -
uspace/lib/libc/generic/udebug.c
r94e152a r2e3355a 58 58 size_t *copied, size_t *needed) 59 59 { 60 return async_req_3_3(phoneid, IPC_M_DEBUG_ALL, UDEBUG_M_THREAD_READ, 61 (sysarg_t)buffer, n, NULL, copied, needed); 60 ipcarg_t a_copied, a_needed; 61 int rc; 62 63 rc = async_req_3_3(phoneid, IPC_M_DEBUG_ALL, UDEBUG_M_THREAD_READ, 64 (sysarg_t)buffer, n, NULL, &a_copied, &a_needed); 65 66 *copied = (size_t)a_copied; 67 *needed = (size_t)a_needed; 68 69 return rc; 62 70 } 63 71 … … 77 85 sysarg_t *val0, sysarg_t *val1) 78 86 { 79 return async_req_2_3(phoneid, IPC_M_DEBUG_ALL, UDEBUG_M_GO, 80 tid, (sysarg_t)ev_type, (sysarg_t)val0, (sysarg_t)val1); 87 ipcarg_t a_ev_type; 88 int rc; 89 90 rc = async_req_2_3(phoneid, IPC_M_DEBUG_ALL, UDEBUG_M_GO, 91 tid, &a_ev_type, val0, val1); 92 93 *ev_type = a_ev_type; 94 return rc; 81 95 } 82 96 -
uspace/lib/libc/include/task.h
r94e152a r2e3355a 41 41 42 42 extern task_id_t task_get_id(void); 43 extern task_id_t task_spawn(const char *path, c onst char *argv[]);43 extern task_id_t task_spawn(const char *path, char *const argv[]); 44 44 45 45 #endif
Note:
See TracChangeset
for help on using the changeset viewer.