Rev 1698 | Rev 1757 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1698 | Rev 1702 | ||
---|---|---|---|
Line 24... | Line 24... | ||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
- | 29 | /** @addtogroup genericipc |
|
- | 30 | * @{ |
|
- | 31 | */ |
|
- | 32 | /** @file |
|
- | 33 | */ |
|
- | 34 | ||
29 | /* IPC resources management |
35 | /* IPC resources management |
30 | * |
36 | * |
31 | * The goal of this source code is to properly manage IPC resources |
37 | * The goal of this source code is to properly manage IPC resources |
32 | * and allow straight and clean clean-up procedure upon task termination. |
38 | * and allow straight and clean clean-up procedure upon task termination. |
33 | * |
39 | * |
Line 204... | Line 210... | ||
204 | phone_t *phone = &TASK->phones[phoneid]; |
210 | phone_t *phone = &TASK->phones[phoneid]; |
205 | 211 | ||
206 | ASSERT(phone->state == IPC_PHONE_CONNECTING); |
212 | ASSERT(phone->state == IPC_PHONE_CONNECTING); |
207 | ipc_phone_connect(phone, box); |
213 | ipc_phone_connect(phone, box); |
208 | } |
214 | } |
- | 215 | ||
- | 216 | /** @} |
|
- | 217 | */ |
|
- | 218 |