Changeset 4184e76 in mainline


Ignore:
Timestamp:
2007-02-05T15:03:01Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d8d542e
Parents:
b513b3e
Message:

explicit typecast, fix signed/unsigned comparison

Location:
kernel/generic/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/main/kinit.c

    rb513b3e r4184e76  
    119119#ifdef CONFIG_SMP
    120120        if (config.cpu_count > 1) {
    121                 int i;
     121                unsigned int i;
    122122               
    123123                /*
     
    147147         * Create kernel console.
    148148         */
    149         t = thread_create(kconsole, "kconsole", TASK, 0, "kconsole", false);
     149        t = thread_create(kconsole, (void *) "kconsole", TASK, 0, "kconsole", false);
    150150        if (t)
    151151                thread_ready(t);
  • kernel/generic/src/proc/scheduler.c

    rb513b3e r4184e76  
    145145                        spinlock_unlock(&CPU->lock);
    146146                        THREAD->saved_fpu_context =
    147                                 slab_alloc(fpu_context_slab, 0);
     147                            (fpu_context_t *) slab_alloc(fpu_context_slab, 0);
    148148                        /* We may have switched CPUs during slab_alloc */
    149149                        goto restart;
     
    538538{
    539539        thread_t *t;
    540         int count, average, i, j, k = 0;
     540        int count, average, j, k = 0;
     541        unsigned int i;
    541542        ipl_t ipl;
    542543
     
    690691{
    691692        ipl_t ipl;
    692         int cpu,i;
     693        unsigned int cpu, i;
    693694        runq_t *r;
    694695        thread_t *t;
     
    698699         * let's not be interrupted */
    699700        ipl = interrupts_disable();
    700         for (cpu=0;cpu < config.cpu_count; cpu++) {
     701        for (cpu = 0; cpu < config.cpu_count; cpu++) {
    701702
    702703                if (!cpus[cpu].active)
  • kernel/generic/src/proc/task.c

    rb513b3e r4184e76  
    394394            cur = cur->next) {
    395395                btree_node_t *node;
    396                 int i;
     396                unsigned int i;
    397397               
    398398                node = list_get_instance(cur, btree_node_t, leaf_link);
  • kernel/generic/src/proc/thread.c

    rb513b3e r4184e76  
    167167#endif 
    168168
    169         t->kstack = frame_alloc(STACK_FRAMES, FRAME_KA | kmflags);
     169        t->kstack = (uint8_t *) frame_alloc(STACK_FRAMES, FRAME_KA | kmflags);
    170170        if (! t->kstack) {
    171171#ifdef ARCH_HAS_FPU
     
    569569            cur != &threads_btree.leaf_head; cur = cur->next) {
    570570                btree_node_t *node;
    571                 int i;
     571                unsigned int i;
    572572
    573573                node = list_get_instance(cur, btree_node_t, leaf_link);
Note: See TracChangeset for help on using the changeset viewer.