Changeset 101516d in mainline
- Timestamp:
- 2016-08-30T18:06:41Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a481d81
- Parents:
- 2f6ad06
- Location:
- uspace/lib/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
r2f6ad06 r101516d 116 116 #include <stdlib.h> 117 117 #include <macros.h> 118 #include <as.h> 118 119 #include "private/libc.h" 119 120 … … 3379 3380 } 3380 3381 3382 void *async_as_area_create(void *base, size_t size, unsigned int flags, 3383 async_sess_t *pager) 3384 { 3385 return as_area_create(base, size, flags, pager->phone); 3386 } 3387 3381 3388 /** @} 3382 3389 */ -
uspace/lib/c/include/as.h
r2f6ad06 r101516d 38 38 #include <sys/types.h> 39 39 #include <abi/mm/as.h> 40 #include <task.h>41 40 #include <libarch/config.h> 42 41 -
uspace/lib/c/include/async.h
r2f6ad06 r101516d 488 488 extern void async_remote_state_release_exchange(async_exch_t *); 489 489 490 extern void *async_as_area_create(void *, size_t, unsigned int, async_sess_t *); 491 490 492 #endif 491 493
Note:
See TracChangeset
for help on using the changeset viewer.