Ignore:
Timestamp:
2017-10-17T13:11:35Z (7 years ago)
Author:
Ondřej Hlavatý <aearsis@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
60af4cdb
Parents:
dbf32b1 (diff), a416d070 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/smp/sun4u/ipi.c

    rdbf32b1 r95c675b  
    3535#include <smp/ipi.h>
    3636#include <arch/smp/sun4u/ipi.h>
     37#include <assert.h>
    3738#include <cpu.h>
    3839#include <arch.h>
     
    103104                panic("Interrupt Dispatch Status busy bit set\n");
    104105       
    105         ASSERT(!(pstate_read() & PSTATE_IE_BIT));
     106        assert(!(pstate_read() & PSTATE_IE_BIT));
    106107       
    107108        do {
     
    185186void ipi_unicast_arch(unsigned int cpu_id, int ipi)
    186187{
    187         ASSERT(&cpus[cpu_id] != CPU);
     188        assert(&cpus[cpu_id] != CPU);
    188189       
    189190        if (ipi == IPI_SMP_CALL) {
Note: See TracChangeset for help on using the changeset viewer.