Changeset 1b20da0 in mainline for abi/include
- Timestamp:
- 2018-02-28T17:52:03Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3061bc1
- Parents:
- df6ded8
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:26:03)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:52:03)
- Location:
- abi/include/abi
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
abi/include/abi/asmtool.h
rdf6ded8 r1b20da0 27 27 */ 28 28 29 /** @addtogroup asmtool 29 /** @addtogroup asmtool 30 30 * @{ 31 31 */ … … 52 52 #define FUNCTION_BEGIN(func) \ 53 53 .type func STT_FUNC; \ 54 SYMBOL_BEGIN(func) 54 SYMBOL_BEGIN(func) 55 55 #define FUNCTION_END(func) \ 56 56 SYMBOL_END(func) -
abi/include/abi/ipc/methods.h
rdf6ded8 r1b20da0 72 72 * - passes call to userspace. If userspace 73 73 * responds with error, phone is deallocated and 74 * error is sent back to caller. Otherwise 74 * error is sent back to caller. Otherwise 75 75 * the call is accepted and the response is sent back. 76 76 * - the hash of the allocated phone is passed to userspace … … 112 112 113 113 /** Receive as_area over IPC. 114 * 114 * 115 115 * - ARG1 - destination as_area size 116 116 * - ARG2 - user defined argument … … 142 142 * 143 143 * - ARG1 - destination virtual address in the source address space 144 * - ARG2 - size of data to be received, may be cropped by the recipient 144 * - ARG2 - size of data to be received, may be cropped by the recipient 145 145 * 146 146 * on answer, the recipient must set: -
abi/include/abi/mm/as.h
rdf6ded8 r1b20da0 47 47 #define AS_MAP_FAILED ((void *) -1) 48 48 49 #define AS_AREA_UNPAGED NULL 49 #define AS_AREA_UNPAGED NULL 50 50 51 51 /** Address space area info exported to uspace. */
Note:
See TracChangeset
for help on using the changeset viewer.