Rev 3104 | Rev 3186 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3104 | Rev 3184 | ||
|---|---|---|---|
| Line 85... | Line 85... | ||
| 85 | call_t *ipc_call_alloc(int flags) |
85 | call_t *ipc_call_alloc(int flags) |
| 86 | { |
86 | { |
| 87 | call_t *call; |
87 | call_t *call; |
| 88 | 88 | ||
| 89 | call = slab_alloc(ipc_call_slab, flags); |
89 | call = slab_alloc(ipc_call_slab, flags); |
| - | 90 | if (call) |
|
| 90 | _ipc_call_init(call); |
91 | _ipc_call_init(call); |
| 91 | 92 | ||
| 92 | return call; |
93 | return call; |
| 93 | } |
94 | } |
| 94 | 95 | ||
| 95 | /** Initialize a statically allocated call structure. |
96 | /** Initialize a statically allocated call structure. |