Changeset 8a637a4 in mainline for kernel/generic/src


Ignore:
Timestamp:
2015-09-30T17:47:41Z (10 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

Location:
kernel/generic/src/ipc
Files:
2 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 *
  • kernel/generic/src/ipc/irq.c

    ra955fcc r8a637a4  
    351351               
    352352                free(irq);
    353                 return EEXISTS;
     353                return EEXIST;
    354354        }
    355355       
Note: See TracChangeset for help on using the changeset viewer.