Changeset a83a802 in mainline for generic/src


Ignore:
Timestamp:
2005-11-23T13:28:17Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8418c7d
Parents:
607c5f9
Message:

SMP work.
Add madt_irq_to_pin().
Make ksmp() use virtual irq_to_pin() function, which makes better sence for ACPI configurations.

Location:
generic/src/main
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • generic/src/main/kconsole.c

    r607c5f9 ra83a802  
    5050                printf("%s> ", __FUNCTION__);
    5151                gets(stdin, buf, sizeof(buf));
     52                printf("?\n");
    5253        }
    5354}
  • generic/src/main/kinit.c

    r607c5f9 ra83a802  
    118118
    119119        /*
     120         * At this point SMP, if present, is configured.
     121         */
     122        arch_post_smp_init();
     123
     124        /*
    120125         * Create kernel console.
    121126         */
     
    165170
    166171        while (1) {
    167                 thread_sleep(60);
     172                thread_sleep(1);
    168173                printf("kinit... ");
    169174        }
  • generic/src/main/main.c

    r607c5f9 ra83a802  
    171171        arch_pre_smp_init();
    172172        smp_init();
    173         arch_post_smp_init();
    174173        printf("config.memory_size=%dM\n", config.memory_size/(1024*1024));
    175174        printf("config.cpu_count=%d\n", config.cpu_count);
Note: See TracChangeset for help on using the changeset viewer.