Changeset 63e27ef in mainline for kernel/genarch/src/mm/asid.c


Ignore:
Timestamp:
2017-06-19T21:47:42Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
deacc58d
Parents:
7354b5e
Message:

ASSERT → assert

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/mm/asid.c

    r7354b5e r63e27ef  
    5757 */
    5858
     59#include <assert.h>
    5960#include <mm/asid.h>
    6061#include <mm/as.h>
     
    6465#include <synch/mutex.h>
    6566#include <adt/list.h>
    66 #include <debug.h>
    6767
    6868static size_t asids_allocated = 0;
     
    7878        as_t *as;
    7979
    80         ASSERT(interrupts_disabled());
    81         ASSERT(spinlock_locked(&asidlock));
     80        assert(interrupts_disabled());
     81        assert(spinlock_locked(&asidlock));
    8282
    8383        /*
     
    9898                 */
    9999                tmp = list_first(&inactive_as_with_asid_list);
    100                 ASSERT(tmp != NULL);
     100                assert(tmp != NULL);
    101101                list_remove(tmp);
    102102               
     
    108108                 */
    109109                asid = as->asid;
    110                 ASSERT(asid != ASID_INVALID);
     110                assert(asid != ASID_INVALID);
    111111
    112112                /*
Note: See TracChangeset for help on using the changeset viewer.