Changeset 8a637a4 in mainline for kernel/generic/src/ipc/event.c
- Timestamp:
- 2015-09-30T17:47:41Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1f7584
- Parents:
- a955fcc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/event.c
ra955fcc r8a637a4 251 251 * 252 252 * @return EOK if the subscription was successful. 253 * @return EEXIST Sif the notifications of the given type are253 * @return EEXIST if the notifications of the given type are 254 254 * already subscribed. 255 255 * … … 269 269 res = EOK; 270 270 } else 271 res = EEXIST S;271 res = EEXIST; 272 272 273 273 spinlock_unlock(&event->lock); … … 282 282 * 283 283 * @return EOK if the subscription was successful. 284 * @return EEXIST Sif the notifications of the given type are284 * @return EEXIST if the notifications of the given type are 285 285 * already subscribed. 286 286 * … … 334 334 * @return EOK on success. 335 335 * @return ELIMIT on unknown event type. 336 * @return EEXIST Sif the notifications of the given type are336 * @return EEXIST if the notifications of the given type are 337 337 * already subscribed. 338 338 *
Note:
See TracChangeset
for help on using the changeset viewer.