Rev 4307 | Rev 4395 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4307 | Rev 4351 | ||
|---|---|---|---|
| Line 102... | Line 102... | ||
| 102 | * @returns The packet of dimensions at least as given. |
102 | * @returns The packet of dimensions at least as given. |
| 103 | * @returns NULL if there is not enough memory left. |
103 | * @returns NULL if there is not enough memory left. |
| 104 | */ |
104 | */ |
| 105 | packet_t packet_get( size_t addr_len, size_t max_prefix, size_t max_content, size_t max_suffix ); |
105 | packet_t packet_get( size_t addr_len, size_t max_prefix, size_t max_content, size_t max_suffix ); |
| 106 | 106 | ||
| 107 | /** \todo |
107 | /** Releases the packet queue. |
| - | 108 | * @param packet_id The first packet identifier. Input parameter. |
|
| - | 109 | * @returns EOK on success. |
|
| - | 110 | * @returns ENOENT if there is no such packet. |
|
| 108 | */ |
111 | */ |
| 109 | int packet_release_wrapper( packet_id_t packet_id ); |
112 | int packet_release_wrapper( packet_id_t packet_id ); |
| 110 | 113 | ||
| 111 | /** Releases the packet and returns it to the appropriate free packet queue. |
114 | /** Releases the packet and returns it to the appropriate free packet queue. |
| 112 | * Should be used only when the global data are locked. |
115 | * Should be used only when the global data are locked. |