Changeset 161 for trunk/kernel/mm/kcm.h


Ignore:
Timestamp:
Jul 7, 2017, 2:14:49 PM (7 years ago)
Author:
max@…
Message:

style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/mm/kcm.h

    r50 r161  
    5858        uint32_t             active_pages_nr;  /*! number of active pages                  */
    5959
    60     uint32_t             type;             /*! KCM type                                */
     60        uint32_t             type;             /*! KCM type                                */
    6161}
    6262kcm_t;
     
    7373        uint32_t        bitmap[2];             /*! at most 64 blocks in a single page      */
    7474        list_entry_t    list;                  /*! [active / busy / free] list member      */
    75     kcm_t         * kcm;                   /*! pointer on kcm allocator                */ 
     75        kcm_t         * kcm;                   /*! pointer on kcm allocator                */
    7676        page_t        * page;                  /*! pointer on the physical page descriptor */
    7777        uint32_t        count;                 /*! number of allocated blocks              */
     
    8888 ***************************************************************************************/
    8989void kcm_init( kcm_t    * kcm,
    90                    uint32_t   type );
     90               uint32_t   type );
    9191
    9292/****************************************************************************************
     
    111111 * @ ptr   : local pointer on the allocated buffer.
    112112 ***************************************************************************************/
    113 void  kcm_free( void * ptr );
     113void kcm_free( void * ptr );
    114114
    115115/****************************************************************************************
     
    120120void kcm_print( kcm_t * kcm );
    121121
    122 
    123 
    124122#endif  /* _KCM_H_ */
Note: See TracChangeset for help on using the changeset viewer.