Changeset 8a637a4 in mainline for kernel/generic/src/ipc/event.c


Ignore:
Timestamp:
2015-09-30T17:47:41Z (9 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f1f7584
Parents:
a955fcc
Message:

remove EEXISTS in favor of EEXIST

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/event.c

    ra955fcc r8a637a4  
    251251 *
    252252 * @return EOK if the subscription was successful.
    253  * @return EEXISTS if the notifications of the given type are
     253 * @return EEXIST if the notifications of the given type are
    254254 *         already subscribed.
    255255 *
     
    269269                res = EOK;
    270270        } else
    271                 res = EEXISTS;
     271                res = EEXIST;
    272272       
    273273        spinlock_unlock(&event->lock);
     
    282282 *
    283283 * @return EOK if the subscription was successful.
    284  * @return EEXISTS if the notifications of the given type are
     284 * @return EEXIST if the notifications of the given type are
    285285 *         already subscribed.
    286286 *
     
    334334 * @return EOK on success.
    335335 * @return ELIMIT on unknown event type.
    336  * @return EEXISTS if the notifications of the given type are
     336 * @return EEXIST if the notifications of the given type are
    337337 *         already subscribed.
    338338 *
Note: See TracChangeset for help on using the changeset viewer.