Changeset 63e27ef in mainline for kernel/generic/src/ipc/ipcrsc.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/generic/src/ipc/ipcrsc.c

    r7354b5e r63e27ef  
    131131#include <proc/task.h>
    132132#include <ipc/ipcrsc.h>
    133 #include <debug.h>
     133#include <assert.h>
    134134#include <abi/errno.h>
    135135
     
    220220static void phone_deallocp(phone_t *phone)
    221221{
    222         ASSERT(phone->state == IPC_PHONE_CONNECTING);
     222        assert(phone->state == IPC_PHONE_CONNECTING);
    223223       
    224224        /* Atomic operation */
     
    253253        phone_t *phone = &TASK->phones[phoneid];
    254254       
    255         ASSERT(phone->state == IPC_PHONE_CONNECTING);
     255        assert(phone->state == IPC_PHONE_CONNECTING);
    256256        return ipc_phone_connect(phone, box);
    257257}
Note: See TracChangeset for help on using the changeset viewer.