Changeset ff75d34 in mainline


Ignore:
Timestamp:
2006-03-30T18:38:27Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
296cc1b
Parents:
b6d4566
Message:

Fix comments.

Location:
generic/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • generic/include/arch.h

    rb6d4566 rff75d34  
    4646 * For each possible kernel stack, structure
    4747 * of the following type will be placed at
    48  * the bottom of the stack.
     48 * the base address of the stack.
    4949 */
    5050struct the {
  • generic/include/mm/buddy.h

    rb6d4566 rff75d34  
    3535#define BUDDY_SYSTEM_INNER_BLOCK        0xff
    3636
    37 /** Buddy system operations to be implemented by each implementations. */
     37/** Buddy system operations to be implemented by each implementation. */
    3838struct buddy_system_operations {
    3939        link_t *(* find_buddy)(buddy_system_t *, link_t *);             /**< Return pointer to left-side or right-side buddy for block passed as argument. */
     
    4343        __u8 (*get_order)(buddy_system_t *, link_t *);                  /**< Return order of block passed as argument. */
    4444        void (*mark_busy)(buddy_system_t *, link_t *);                  /**< Mark block as busy */
    45         void (*mark_available)(buddy_system_t *, link_t *);                     /**< Mark block as busy */
     45        void (*mark_available)(buddy_system_t *, link_t *);             /**< Mark block as busy */
    4646        /** Find parent of block that has given order  */
    4747        link_t *(* find_block)(buddy_system_t *, link_t *, __u8);
  • generic/include/synch/futex.h

    rb6d4566 rff75d34  
    3838/** Kernel-side futex structure. */
    3939struct futex {
    40         __address paddr;        /** Physical address of the status variable. */
    41         waitq_t wq;             /** Wait queue for threads waiting for futex availability. */
    42         link_t ht_link;         /** Futex hash table link. */
     40        __address paddr;        /**< Physical address of the status variable. */
     41        waitq_t wq;             /**< Wait queue for threads waiting for futex availability. */
     42        link_t ht_link;         /**< Futex hash table link. */
    4343};
    4444
Note: See TracChangeset for help on using the changeset viewer.