Changeset 88636f68 in mainline


Ignore:
Timestamp:
2006-06-10T10:17:05Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
971cf31f
Parents:
fd7faa87
Message:

#ifdef more debugging printf()'s.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/smp/apic.c

    rfd7faa87 r88636f68  
    228228
    229229        icr.lo = l_apic[ICRlo];
    230         if (icr.delivs == DELIVS_PENDING)
     230        if (icr.delivs == DELIVS_PENDING) {
     231#ifdef CONFIG_DEBUG
    231232                printf("IPI is pending.\n");
     233#endif
     234        }
    232235
    233236        return apic_poll_errors();
     
    268271        delay(20);
    269272
    270         if (!apic_poll_errors()) return 0;
     273        if (!apic_poll_errors())
     274                return 0;
    271275
    272276        icr.lo = l_apic[ICRlo];
    273         if (icr.delivs == DELIVS_PENDING)
     277        if (icr.delivs == DELIVS_PENDING) {
     278#ifdef CONFIG_DEBUG
    274279                printf("IPI is pending.\n");
     280#endif
     281        }
    275282
    276283        icr.delmod = DELMOD_INIT;
  • generic/src/proc/task.c

    rfd7faa87 r88636f68  
    437437}
    438438
    439 /** Kernel task used to kill a userspace task when its main thread exits.
     439/** Kernel thread used to kill the userspace task when its main thread exits.
    440440 *
    441441 * This thread waits until the main userspace thread (i.e. uninit) exits.
Note: See TracChangeset for help on using the changeset viewer.