Changes in kernel/generic/src/ipc/event.c [8820544:8a637a4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/event.c
r8820544 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.