Changeset abbc16e in mainline for generic/src
- Timestamp:
- 2006-06-16T11:17:54Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 62939f7
- Parents:
- b6529ae
- Location:
- generic/src
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/adt/btree.c
rb6529ae rabbc16e 215 215 /** Remove B-tree node. 216 216 * 217 * @param B-tree.217 * @param t B-tree. 218 218 * @param key Key to be removed from the B-tree along with its associated value. 219 219 * @param leaf_node If not NULL, pointer to the leaf node where the key is found. … … 235 235 /** Recursively remove B-tree node. 236 236 * 237 * @param B-tree.237 * @param t B-tree. 238 238 * @param key Key to be removed from the B-tree along with its associated value. 239 239 * @param node Node where the key being removed resides. … … 903 903 /** Rotate in a key from the right sibling or from the index node, if this operation can be done. 904 904 * 905 * @param rnode Node into which to add key from its right sibling or from the index node.905 * @param lnode Node into which to add key from its right sibling or from the index node. 906 906 * 907 907 * @return True if the rotation was performed, false otherwise. -
generic/src/adt/hash_table.c
rb6529ae rabbc16e 78 78 * 79 79 * @param h Hash table. 80 * @param hey Array of all keys necessary to compute hash index.80 * @param key Array of all keys necessary to compute hash index. 81 81 * @param item Item to be inserted into the hash table. 82 82 */ -
generic/src/console/console.c
rb6529ae rabbc16e 118 118 * @param chardev Character device. 119 119 * @param buf Buffer where to store string terminated by '\0'. 120 * @param len Size of the buffer.120 * @param buflen Size of the buffer. 121 121 * 122 122 * @return Number of characters read. -
generic/src/console/kconsole.c
rb6529ae rabbc16e 404 404 /** Kernel console managing thread. 405 405 * 406 * @param arg Not used.406 * @param prompt Kernel console prompt (e.g kconsole/panic). 407 407 */ 408 408 void kconsole(void *prompt) -
generic/src/ddi/ddi.c
rb6529ae rabbc16e 169 169 /** Wrapper for SYS_ENABLE_IOSPACE syscall. 170 170 * 171 * @param User space address of DDI argument structure.171 * @param uspace_io_arg User space address of DDI argument structure. 172 172 * 173 173 * @return 0 on success, otherwise it returns error code found in errno.h -
generic/src/ipc/ipc.c
rb6529ae rabbc16e 210 210 /** Send a asynchronous request using phone to answerbox 211 211 * 212 * @param phone Phone connected to answerbox 213 * @param request Request to be sent212 * @param phone Phone connected to answerbox. 213 * @param call Structure representing the call. 214 214 */ 215 215 int ipc_call(phone_t *phone, call_t *call) -
generic/src/lib/func.c
rb6529ae rabbc16e 136 136 * 137 137 * @param src Source string. 138 * @param d st Destination buffer.138 * @param dest Destination buffer. 139 139 * @param len Size of destination buffer. 140 140 */ -
generic/src/mm/buddy.c
rb6529ae rabbc16e 287 287 * 288 288 * @param b Pointer to buddy system 289 * @param e sElement size289 * @param elem_size Element size 290 290 */ 291 291 void buddy_system_structure_print(buddy_system_t *b, size_t elem_size) { -
generic/src/mm/frame.c
rb6529ae rabbc16e 996 996 * If it drops to zero, move the frame structure to free list. 997 997 * 998 * @param frame Frame numberto be freed.998 * @param pfn Frame number of the frame to be freed. 999 999 */ 1000 1000 void frame_free(pfn_t pfn) … … 1022 1022 * increment frame reference count. 1023 1023 * 1024 * @param frame Frame noto be freed.1024 * @param pfn Frame number of the frame to be freed. 1025 1025 */ 1026 1026 void frame_reference_add(pfn_t pfn) … … 1113 1113 } 1114 1114 1115 /** Prints zone details 1116 * 1117 * @param base Zone base address OR zone number1115 /** Prints zone details. 1116 * 1117 * @param num Zone base address or zone number. 1118 1118 */ 1119 1119 void zone_print_one(int num) { -
generic/src/proc/scheduler.c
rb6529ae rabbc16e 254 254 * When the function decides to relink rq's, it reconnects 255 255 * respective pointers so that in result threads with 'pri' 256 * greater or equal @start are moved to a higher-priority queue.256 * greater or equal start are moved to a higher-priority queue. 257 257 * 258 258 * @param start Threshold priority. -
generic/src/syscall/copy.c
rb6529ae rabbc16e 95 95 * 96 96 * @param uspace_dst Destination userspace address. 97 * @param uspace_src Source kernel address.97 * @param src Source kernel address. 98 98 * @param size Size of the data to be copied. 99 99 *
Note:
See TracChangeset
for help on using the changeset viewer.