Changeset 46fc2f9 in mainline for generic/include
- Timestamp:
- 2006-05-27T22:57:21Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6212095
- Parents:
- 00b595b
- Location:
- generic/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/ipc/ipc.h
r00b595b r46fc2f9 43 43 * userspace, will be discarded */ 44 44 #define IPC_CALL_FORWARDED (1<<3) /* Call was forwarded */ 45 #define IPC_CALL_CONN_ME_TO (1<<4) /* Identify connect_me_to */45 #define IPC_CALL_CONN_ME_TO (1<<4) /* Identify connect_me_to answer */ 46 46 #define IPC_CALL_NOTIF (1<<5) /* Interrupt notification */ 47 47 … … 120 120 /** Interrupt notification */ 121 121 #define IPC_M_INTERRUPT 4 122 122 123 /** Send as_area over IPC 123 * - ARG2 - src base address 124 * - ARG3 - size of src as(filled automatically by kernel) 124 * - ARG1 - src base address 125 * - ARG2 - size of src as(filled automatically by kernel) 126 * - ARG3 - flags of the area being sent 125 127 * - on answer ARG1 - dst base adress 126 128 */ 127 129 #define IPC_M_AS_AREA_SEND 5 130 131 /** Get as_area over IPC 132 * - ARG1 - Where the area will be mapped 133 * - ARG2 - Expected size of area 134 * - ARG3 - Requested rights for the area 135 * on answer - the server sets ARG1 as src as address of the as_area 136 * to be shared 137 * 138 * 139 */ 140 #define IPC_M_AS_AREA_RECV 6 128 141 129 142 -
generic/include/mm/as.h
r00b595b r46fc2f9 169 169 extern void as_switch(as_t *old, as_t *new); 170 170 extern void as_free(as_t *as); 171 externint as_area_share(as_t *src_as, __address src_base, size_t acc_size,172 __address dst_base, int dst_flags_mask);171 int as_area_share(as_t *src_as, __address src_base, size_t acc_size, 172 as_t *dst_as, __address dst_base, int dst_flags_mask); 173 173 extern size_t as_get_size(__address base); 174 174 extern int used_space_insert(as_area_t *a, __address page, count_t count); -
generic/include/mm/slab.h
r00b595b r46fc2f9 39 39 40 40 /** Maximum size to be allocated by malloc */ 41 #define SLAB_MAX_MALLOC_W 1 741 #define SLAB_MAX_MALLOC_W 18 42 42 43 43 /** Initial Magazine size (TODO: dynamically growing magazines) */
Note:
See TracChangeset
for help on using the changeset viewer.
