Changeset e394c196 in mainline for kernel/generic/src/ipc
- Timestamp:
- 2018-11-12T20:53:57Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 705ca2b
- Parents:
- 15639ec
- git-author:
- Jakub Jermar <jakub@…> (2018-08-28 19:55:29)
- git-committer:
- Jakub Jermar <jakub@…> (2018-11-12 20:53:57)
- Location:
- kernel/generic/src/ipc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ipc.c
r15639ec re394c196 120 120 return NULL; 121 121 122 kobject_t *kobj = (kobject_t *) malloc(sizeof(kobject_t));122 kobject_t *kobj = kobject_alloc(0); 123 123 if (!kobj) { 124 124 slab_free(call_cache, call); -
kernel/generic/src/ipc/ipcrsc.c
r15639ec re394c196 76 76 return ENOMEM; 77 77 } 78 kobject_t *kobj = malloc(sizeof(kobject_t));78 kobject_t *kobj = kobject_alloc(FRAME_ATOMIC); 79 79 if (!kobj) { 80 80 cap_free(TASK, handle); -
kernel/generic/src/ipc/irq.c
r15639ec re394c196 356 356 } 357 357 358 kobject_t *kobject = malloc(sizeof(kobject_t));358 kobject_t *kobject = kobject_alloc(FRAME_ATOMIC); 359 359 if (!kobject) { 360 360 cap_free(TASK, handle);
Note:
See TracChangeset
for help on using the changeset viewer.