Changeset b6ee5b1 in mainline
- Timestamp:
- 2009-10-11T08:09:21Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cadfa8e
- Parents:
- f53cc81
- Location:
- uspace/lib/libc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/async.c
rf53cc81 rb6ee5b1 233 233 * 234 234 */ 235 static voidinsert_timeout(awaiter_t *wd)235 void async_insert_timeout(awaiter_t *wd) 236 236 { 237 237 wd->to_event.occurred = false; … … 393 393 while (list_empty(&conn->msg_queue)) { 394 394 if (usecs) 395 insert_timeout(&conn->wdata);395 async_insert_timeout(&conn->wdata); 396 396 397 397 conn->wdata.active = false; … … 916 916 msg->wdata.fid = fibril_get_id(); 917 917 msg->wdata.active = false; 918 insert_timeout(&msg->wdata);918 async_insert_timeout(&msg->wdata); 919 919 920 920 /* Leave the async_futex locked when entering this function */ … … 957 957 futex_down(&async_futex); 958 958 959 insert_timeout(&msg->wdata);959 async_insert_timeout(&msg->wdata); 960 960 961 961 /* Leave the async_futex locked when entering this function */ -
uspace/lib/libc/include/async_priv.h
rf53cc81 rb6ee5b1 68 68 } awaiter_t; 69 69 70 extern void async_insert_timeout(awaiter_t *wd); 71 70 72 #endif 71 73
Note:
See TracChangeset
for help on using the changeset viewer.