Changeset c0855a0 in mainline


Ignore:
Timestamp:
2009-02-24T20:14:38Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2a1410d
Parents:
691eb52
Message:

Fix broken doxygen syntax.

Location:
kernel/generic/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/console/console.c

    r691eb52 rc0855a0  
    5252#define KLOG_LATENCY 8
    5353
    54 /**< Kernel log cyclic buffer */
     54/** Kernel log cyclic buffer */
    5555static char klog[KLOG_SIZE] __attribute__ ((aligned (PAGE_SIZE)));
    5656
    57 /**< Kernel log initialized */
     57/** Kernel log initialized */
    5858static bool klog_inited = false;
    59 /**< First kernel log characters */
     59/** First kernel log characters */
    6060static index_t klog_start = 0;
    61 /**< Number of valid kernel log characters */
     61/** Number of valid kernel log characters */
    6262static size_t klog_len = 0;
    63 /**< Number of stored (not printed) kernel log characters */
     63/** Number of stored (not printed) kernel log characters */
    6464static size_t klog_stored = 0;
    65 /**< Number of stored kernel log characters for uspace */
     65/** Number of stored kernel log characters for uspace */
    6666static size_t klog_uspace = 0;
    6767
    68 /**< Silence output */
     68/** Silence output */
    6969bool silent = false;
    7070
    71 /**< Kernel log spinlock */
     71/** Kernel log spinlock */
    7272SPINLOCK_INITIALIZE(klog_lock);
    7373
  • kernel/generic/src/main/main.c

    r691eb52 rc0855a0  
    106106 */
    107107
    108 /**< Virtual address of where the kernel is loaded. */
     108/** Virtual address of where the kernel is loaded. */
    109109uintptr_t hardcoded_load_address = 0;
    110 /**< Size of the kernel code in bytes. */
     110/** Size of the kernel code in bytes. */
    111111size_t hardcoded_ktext_size = 0;
    112 /**< Size of the kernel data in bytes. */
     112/** Size of the kernel data in bytes. */
    113113size_t hardcoded_kdata_size = 0;
    114 /**< Lowest safe stack virtual address. */
     114/** Lowest safe stack virtual address. */
    115115uintptr_t stack_safe = 0;               
    116116
Note: See TracChangeset for help on using the changeset viewer.