Changeset 11b285d in mainline for kernel/generic/src/ipc/ipc.c
- Timestamp:
- 2018-05-13T15:19:32Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ad896eb
- Parents:
- 13db2044
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-05-13 14:59:01)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-05-13 15:19:32)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ipc.c
r13db2044 r11b285d 118 118 if (!call) 119 119 return NULL; 120 kobject_t *kobj = (kobject_t *) malloc(sizeof(kobject_t), flags); 120 121 kobject_t *kobj; 122 if (flags & FRAME_ATOMIC) 123 kobj = (kobject_t *) malloc(sizeof(kobject_t)); 124 else 125 kobj = (kobject_t *) nfmalloc(sizeof(kobject_t)); 126 121 127 if (!kobj) { 122 128 slab_free(call_cache, call);
Note:
See TracChangeset
for help on using the changeset viewer.