Rev 1490 | Rev 1547 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1472 | palkovsky | 1 | /* |
| 2 | * Copyright (C) 2006 Ondrej Palkovsky |
||
| 3 | * All rights reserved. |
||
| 4 | * |
||
| 5 | * Redistribution and use in source and binary forms, with or without |
||
| 6 | * modification, are permitted provided that the following conditions |
||
| 7 | * are met: |
||
| 8 | * |
||
| 9 | * - Redistributions of source code must retain the above copyright |
||
| 10 | * notice, this list of conditions and the following disclaimer. |
||
| 11 | * - Redistributions in binary form must reproduce the above copyright |
||
| 12 | * notice, this list of conditions and the following disclaimer in the |
||
| 13 | * documentation and/or other materials provided with the distribution. |
||
| 14 | * - The name of the author may not be used to endorse or promote products |
||
| 15 | * derived from this software without specific prior written permission. |
||
| 16 | * |
||
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
| 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 |
||
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 27 | */ |
||
| 28 | |||
| 1394 | palkovsky | 29 | #ifndef _libc_ASYNC_H_ |
| 30 | #define _libc_ASYNC_H_ |
||
| 31 | |||
| 32 | #include <ipc/ipc.h> |
||
| 1407 | palkovsky | 33 | #include <psthread.h> |
| 1449 | palkovsky | 34 | #include <sys/time.h> |
| 1463 | palkovsky | 35 | #include <atomic.h> |
| 1394 | palkovsky | 36 | |
| 1427 | palkovsky | 37 | typedef ipc_callid_t aid_t; |
| 1490 | palkovsky | 38 | typedef void (*async_client_conn_t)(ipc_callid_t callid, ipc_call_t *call); |
| 1427 | palkovsky | 39 | |
| 1394 | palkovsky | 40 | int async_manager(void); |
| 1500 | palkovsky | 41 | ipc_callid_t async_get_call_timeout(ipc_call_t *call, suseconds_t usecs); |
| 42 | static inline ipc_callid_t async_get_call(ipc_call_t *data) |
||
| 43 | { |
||
| 44 | return async_get_call_timeout(data, 0); |
||
| 45 | } |
||
| 1394 | palkovsky | 46 | |
| 1427 | palkovsky | 47 | aid_t async_send_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2, |
| 48 | ipc_call_t *dataptr); |
||
| 49 | void async_wait_for(aid_t amsgid, ipcarg_t *result); |
||
| 1441 | palkovsky | 50 | int async_wait_timeout(aid_t amsgid, ipcarg_t *retval, suseconds_t timeout); |
| 1464 | palkovsky | 51 | |
| 52 | /** Pseudo-synchronous message sending |
||
| 53 | * |
||
| 54 | * Send message through IPC, wait in the event loop, until it is received |
||
| 55 | * |
||
| 56 | * @return Return code of message |
||
| 57 | */ |
||
| 58 | static inline ipcarg_t sync_send_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2, ipcarg_t *r1, ipcarg_t *r2) |
||
| 59 | { |
||
| 60 | ipc_call_t result; |
||
| 61 | ipcarg_t rc; |
||
| 62 | |||
| 63 | aid_t eid = async_send_2(phoneid, method, arg1, arg2, &result); |
||
| 64 | async_wait_for(eid, &rc); |
||
| 65 | if (r1) |
||
| 66 | *r1 = IPC_GET_ARG1(result); |
||
| 67 | if (r2) |
||
| 68 | *r2 = IPC_GET_ARG2(result); |
||
| 69 | return rc; |
||
| 70 | } |
||
| 71 | |||
| 72 | |||
| 1452 | palkovsky | 73 | pstid_t async_new_connection(ipcarg_t in_phone_hash,ipc_callid_t callid, |
| 74 | ipc_call_t *call, |
||
| 75 | void (*cthread)(ipc_callid_t,ipc_call_t *)); |
||
| 76 | void async_usleep(suseconds_t timeout); |
||
| 1464 | palkovsky | 77 | void async_create_manager(void); |
| 78 | void async_destroy_manager(void); |
||
| 1490 | palkovsky | 79 | void async_set_client_connection(async_client_conn_t conn); |
| 1464 | palkovsky | 80 | int _async_init(void); |
| 1427 | palkovsky | 81 | |
| 82 | /* Should be defined by application */ |
||
| 1452 | palkovsky | 83 | void interrupt_received(ipc_call_t *call) __attribute__((weak)); |
| 1394 | palkovsky | 84 | |
| 1463 | palkovsky | 85 | |
| 86 | extern atomic_t async_futex; |
||
| 87 | |||
| 1394 | palkovsky | 88 | #endif |