Changeset ea28272 in mainline for uspace/lib/c/generic/clipboard.c
- Timestamp:
- 2010-12-30T13:43:27Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d770deb
- Parents:
- d70d80ed (diff), f418e51 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/clipboard.c
rd70d80ed rea28272 75 75 clip_connect(); 76 76 77 ipcarg_t rc = async_req_1_0(clip_phone, CLIPBOARD_PUT_DATA, CLIPBOARD_TAG_NONE);77 sysarg_t rc = async_req_1_0(clip_phone, CLIPBOARD_PUT_DATA, CLIPBOARD_TAG_NONE); 78 78 79 79 async_serialize_end(); … … 85 85 86 86 aid_t req = async_send_1(clip_phone, CLIPBOARD_PUT_DATA, CLIPBOARD_TAG_DATA, NULL); 87 ipcarg_t rc = async_data_write_start(clip_phone, (void *) str, size);87 sysarg_t rc = async_data_write_start(clip_phone, (void *) str, size); 88 88 if (rc != EOK) { 89 ipcarg_t rc_orig;89 sysarg_t rc_orig; 90 90 async_wait_for(req, &rc_orig); 91 91 async_serialize_end(); … … 119 119 clip_connect(); 120 120 121 ipcarg_t size;122 ipcarg_t tag;123 ipcarg_t rc = async_req_0_2(clip_phone, CLIPBOARD_CONTENT, &size, &tag);121 sysarg_t size; 122 sysarg_t tag; 123 sysarg_t rc = async_req_0_2(clip_phone, CLIPBOARD_CONTENT, &size, &tag); 124 124 125 125 async_serialize_end(); … … 158 158 159 159 if (rc != EOK) { 160 ipcarg_t rc_orig;160 sysarg_t rc_orig; 161 161 async_wait_for(req, &rc_orig); 162 162 async_serialize_end();
Note:
See TracChangeset
for help on using the changeset viewer.