source: mainline/uspace/lib/libc/generic/async.c@ daa90e8

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since daa90e8 was daa90e8, checked in by Jakub Jermar <jakub@…>, 18 years ago

Remove duplicit and empty time.h from libc.
Move timeval functions from async.c to time.c.

  • Property mode set to 100644
File size: 19.1 KB
Line 
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
29/** @addtogroup libc
30 * @{
31 */
32/** @file
33 */
34
35/**
36 * Asynchronous library
37 *
38 * The aim of this library is facilitating writing programs utilizing the
39 * asynchronous nature of HelenOS IPC, yet using a normal way of programming.
40 *
41 * You should be able to write very simple multithreaded programs, the async
42 * framework will automatically take care of most synchronization problems.
43 *
44 * Default semantics:
45 * - async_send_*(): send asynchronously. If the kernel refuses to send
46 * more messages, [ try to get responses from kernel, if
47 * nothing found, might try synchronous ]
48 *
49 * Example of use (pseudo C):
50 *
51 * 1) Multithreaded client application
52 *
53 * fibril_create(fibril1, ...);
54 * fibril_create(fibril2, ...);
55 * ...
56 *
57 * int fibril1(void *arg)
58 * {
59 * conn = ipc_connect_me_to();
60 * c1 = async_send(conn);
61 * c2 = async_send(conn);
62 * async_wait_for(c1);
63 * async_wait_for(c2);
64 * ...
65 * }
66 *
67 *
68 * 2) Multithreaded server application
69 * main()
70 * {
71 * async_manager();
72 * }
73 *
74 *
75 * client_connection(icallid, *icall)
76 * {
77 * if (want_refuse) {
78 * ipc_answer_fast(icallid, ELIMIT, 0, 0);
79 * return;
80 * }
81 * ipc_answer_fast(icallid, EOK, 0, 0);
82 *
83 * callid = async_get_call(&call);
84 * handle_call(callid, call);
85 * ipc_answer_fast(callid, 1, 2, 3);
86 *
87 * callid = async_get_call(&call);
88 * ....
89 * }
90 *
91 */
92
93#include <futex.h>
94#include <async.h>
95#include <fibril.h>
96#include <stdio.h>
97#include <libadt/hash_table.h>
98#include <libadt/list.h>
99#include <ipc/ipc.h>
100#include <assert.h>
101#include <errno.h>
102#include <sys/time.h>
103#include <arch/barrier.h>
104
105atomic_t async_futex = FUTEX_INITIALIZER;
106static hash_table_t conn_hash_table;
107static LIST_INITIALIZE(timeout_list);
108
109typedef struct {
110 /** Expiration time for waiting fibril. */
111 struct timeval expires;
112 /** If true, this struct is in the timeout list. */
113 int inlist;
114 link_t link;
115
116 /** Fibril waiting for this message. */
117 fid_t fid;
118 /** If this fibril is currently active. */
119 int active;
120 /** If true, we timed out. */
121 int timedout;
122} awaiter_t;
123
124typedef struct {
125 awaiter_t wdata;
126
127 int done; /**< If reply was received */
128 ipc_call_t *dataptr; /**< Pointer where the answer data
129 * is stored */
130 ipcarg_t retval;
131} amsg_t;
132
133typedef struct {
134 link_t link;
135 ipc_callid_t callid;
136 ipc_call_t call;
137} msg_t;
138
139typedef struct {
140 awaiter_t wdata;
141
142 link_t link; /**< Hash table link. */
143 ipcarg_t in_phone_hash; /**< Incoming phone hash. */
144 link_t msg_queue; /**< Messages that should be delivered
145 * to this fibril. */
146 /* Structures for connection opening packet */
147 ipc_callid_t callid;
148 ipc_call_t call;
149 ipc_callid_t close_callid; /* Identification of closing packet. */
150 void (*cfibril)(ipc_callid_t, ipc_call_t *);
151} connection_t;
152
153/** Identifier of the incoming connection handled by the current fibril. */
154__thread connection_t *FIBRIL_connection;
155/** If true, it is forbidden to use async_req functions and
156 * all preemption is disabled */
157__thread int in_interrupt_handler;
158
159static void default_client_connection(ipc_callid_t callid, ipc_call_t *call);
160static void default_interrupt_received(ipc_callid_t callid, ipc_call_t *call);
161static async_client_conn_t client_connection = default_client_connection;
162static async_client_conn_t interrupt_received = default_interrupt_received;
163
164/* Hash table functions */
165#define CONN_HASH_TABLE_CHAINS 32
166
167static hash_index_t conn_hash(unsigned long *key)
168{
169 assert(key);
170 return ((*key) >> 4) % CONN_HASH_TABLE_CHAINS;
171}
172
173static int conn_compare(unsigned long key[], hash_count_t keys, link_t *item)
174{
175 connection_t *hs;
176
177 hs = hash_table_get_instance(item, connection_t, link);
178
179 return key[0] == hs->in_phone_hash;
180}
181
182static void conn_remove(link_t *item)
183{
184 free(hash_table_get_instance(item, connection_t, link));
185}
186
187
188/** Operations for NS hash table. */
189static hash_table_operations_t conn_hash_table_ops = {
190 .hash = conn_hash,
191 .compare = conn_compare,
192 .remove_callback = conn_remove
193};
194
195/** Insert sort timeout msg into timeouts list
196 *
197 */
198static void insert_timeout(awaiter_t *wd)
199{
200 link_t *tmp;
201 awaiter_t *cur;
202
203 wd->timedout = 0;
204 wd->inlist = 1;
205
206 tmp = timeout_list.next;
207 while (tmp != &timeout_list) {
208 cur = list_get_instance(tmp, awaiter_t, link);
209 if (tv_gteq(&cur->expires, &wd->expires))
210 break;
211 tmp = tmp->next;
212 }
213 list_append(&wd->link, tmp);
214}
215
216/** Try to route a call to an appropriate connection fibril
217 *
218 */
219static int route_call(ipc_callid_t callid, ipc_call_t *call)
220{
221 connection_t *conn;
222 msg_t *msg;
223 link_t *hlp;
224 unsigned long key;
225
226 futex_down(&async_futex);
227
228 key = call->in_phone_hash;
229 hlp = hash_table_find(&conn_hash_table, &key);
230 if (!hlp) {
231 futex_up(&async_futex);
232 return 0;
233 }
234 conn = hash_table_get_instance(hlp, connection_t, link);
235
236 msg = malloc(sizeof(*msg));
237 msg->callid = callid;
238 msg->call = *call;
239 list_append(&msg->link, &conn->msg_queue);
240
241 if (IPC_GET_METHOD(*call) == IPC_M_PHONE_HUNGUP)
242 conn->close_callid = callid;
243
244 /* If the call is waiting for event, run it */
245 if (!conn->wdata.active) {
246 /* If in timeout list, remove it */
247 if (conn->wdata.inlist) {
248 conn->wdata.inlist = 0;
249 list_remove(&conn->wdata.link);
250 }
251 conn->wdata.active = 1;
252 fibril_add_ready(conn->wdata.fid);
253 }
254
255 futex_up(&async_futex);
256
257 return 1;
258}
259
260/** Return new incoming message for the current (fibril-local) connection */
261ipc_callid_t async_get_call_timeout(ipc_call_t *call, suseconds_t usecs)
262{
263 msg_t *msg;
264 ipc_callid_t callid;
265 connection_t *conn;
266
267 assert(FIBRIL_connection);
268 /* GCC 4.1.0 coughs on FIBRIL_connection-> dereference,
269 * GCC 4.1.1 happilly puts the rdhwr instruction in delay slot.
270 * I would never expect to find so many errors in
271 * compiler *($&$(*&$
272 */
273 conn = FIBRIL_connection;
274
275 futex_down(&async_futex);
276
277 if (usecs) {
278 gettimeofday(&conn->wdata.expires, NULL);
279 tv_add(&conn->wdata.expires, usecs);
280 } else {
281 conn->wdata.inlist = 0;
282 }
283 /* If nothing in queue, wait until something appears */
284 while (list_empty(&conn->msg_queue)) {
285 if (usecs)
286 insert_timeout(&conn->wdata);
287
288 conn->wdata.active = 0;
289 fibril_schedule_next_adv(FIBRIL_TO_MANAGER);
290 /* Futex is up after getting back from async_manager
291 * get it again */
292 futex_down(&async_futex);
293 if (usecs && conn->wdata.timedout &&
294 list_empty(&conn->msg_queue)) {
295 /* If we timed out-> exit */
296 futex_up(&async_futex);
297 return 0;
298 }
299 }
300
301 msg = list_get_instance(conn->msg_queue.next, msg_t, link);
302 list_remove(&msg->link);
303 callid = msg->callid;
304 *call = msg->call;
305 free(msg);
306
307 futex_up(&async_futex);
308 return callid;
309}
310
311/** Fibril function that gets created on new connection
312 *
313 * This function is defined as a weak symbol - to be redefined in
314 * user code.
315 */
316static void default_client_connection(ipc_callid_t callid, ipc_call_t *call)
317{
318 ipc_answer_fast(callid, ENOENT, 0, 0);
319}
320static void default_interrupt_received(ipc_callid_t callid, ipc_call_t *call)
321{
322}
323
324/** Wrapper for client connection fibril.
325 *
326 * When new connection arrives, a fibril with this implementing function is
327 * created. It calls client_connection() and does the final cleanup.
328 *
329 * @param arg Connection structure pointer
330 *
331 * @return Always zero.
332 */
333static int connection_fibril(void *arg)
334{
335 unsigned long key;
336 msg_t *msg;
337 int close_answered = 0;
338
339 /* Setup fibril-local connection pointer */
340 FIBRIL_connection = (connection_t *) arg;
341 FIBRIL_connection->cfibril(FIBRIL_connection->callid,
342 &FIBRIL_connection->call);
343
344 /* Remove myself from connection hash table */
345 futex_down(&async_futex);
346 key = FIBRIL_connection->in_phone_hash;
347 hash_table_remove(&conn_hash_table, &key, 1);
348 futex_up(&async_futex);
349
350 /* Answer all remaining messages with ehangup */
351 while (!list_empty(&FIBRIL_connection->msg_queue)) {
352 msg = list_get_instance(FIBRIL_connection->msg_queue.next,
353 msg_t, link);
354 list_remove(&msg->link);
355 if (msg->callid == FIBRIL_connection->close_callid)
356 close_answered = 1;
357 ipc_answer_fast(msg->callid, EHANGUP, 0, 0);
358 free(msg);
359 }
360 if (FIBRIL_connection->close_callid)
361 ipc_answer_fast(FIBRIL_connection->close_callid, 0, 0, 0);
362
363 return 0;
364}
365
366/** Create a new fibril for a new connection.
367 *
368 * Creates new fibril for connection, fills in connection structures and inserts
369 * it into the hash table, so that later we can easily do routing of messages to
370 * particular fibrils.
371 *
372 * @param in_phone_hash Identification of the incoming connection
373 * @param callid Callid of the IPC_M_CONNECT_ME_TO packet
374 * @param call Call data of the opening packet
375 * @param cfibril Fibril function that should be called upon
376 * opening the connection
377 * @return New fibril id.
378 */
379fid_t async_new_connection(ipcarg_t in_phone_hash, ipc_callid_t callid,
380 ipc_call_t *call, void (*cfibril)(ipc_callid_t, ipc_call_t *))
381{
382 connection_t *conn;
383 unsigned long key;
384
385 conn = malloc(sizeof(*conn));
386 if (!conn) {
387 ipc_answer_fast(callid, ENOMEM, 0, 0);
388 return NULL;
389 }
390 conn->in_phone_hash = in_phone_hash;
391 list_initialize(&conn->msg_queue);
392 conn->callid = callid;
393 conn->close_callid = 0;
394 if (call)
395 conn->call = *call;
396 conn->wdata.active = 1; /* We will activate it asap */
397 conn->cfibril = cfibril;
398
399 conn->wdata.fid = fibril_create(connection_fibril, conn);
400 if (!conn->wdata.fid) {
401 free(conn);
402 ipc_answer_fast(callid, ENOMEM, 0, 0);
403 return NULL;
404 }
405 /* Add connection to hash table */
406 key = conn->in_phone_hash;
407 futex_down(&async_futex);
408 hash_table_insert(&conn_hash_table, &key, &conn->link);
409 futex_up(&async_futex);
410
411 fibril_add_ready(conn->wdata.fid);
412
413 return conn->wdata.fid;
414}
415
416/** Handle a call that was received. */
417static void handle_call(ipc_callid_t callid, ipc_call_t *call)
418{
419 /* Unrouted call - do some default behaviour */
420 if ((callid & IPC_CALLID_NOTIFICATION)) {
421 in_interrupt_handler = 1;
422 (*interrupt_received)(callid,call);
423 in_interrupt_handler = 0;
424 return;
425 }
426
427 switch (IPC_GET_METHOD(*call)) {
428 case IPC_M_CONNECT_ME_TO:
429 /* Open new connection with fibril etc. */
430 async_new_connection(IPC_GET_ARG3(*call), callid, call,
431 client_connection);
432 return;
433 }
434
435 /* Try to route call through connection tables */
436 if (route_call(callid, call))
437 return;
438
439 /* Unknown call from unknown phone - hang it up */
440 ipc_answer_fast(callid, EHANGUP, 0, 0);
441}
442
443/** Fire all timeouts that expired. */
444static void handle_expired_timeouts(void)
445{
446 struct timeval tv;
447 awaiter_t *waiter;
448 link_t *cur;
449
450 gettimeofday(&tv,NULL);
451 futex_down(&async_futex);
452
453 cur = timeout_list.next;
454 while (cur != &timeout_list) {
455 waiter = list_get_instance(cur, awaiter_t, link);
456 if (tv_gt(&waiter->expires, &tv))
457 break;
458 cur = cur->next;
459 list_remove(&waiter->link);
460 waiter->inlist = 0;
461 waiter->timedout = 1;
462 /* Redundant condition? The fibril should not
463 * be active when it gets here.
464 */
465 if (!waiter->active) {
466 waiter->active = 1;
467 fibril_add_ready(waiter->fid);
468 }
469 }
470
471 futex_up(&async_futex);
472}
473
474/** Endless loop dispatching incoming calls and answers */
475static int async_manager_worker(void)
476{
477 ipc_call_t call;
478 ipc_callid_t callid;
479 int timeout;
480 awaiter_t *waiter;
481 struct timeval tv;
482
483 while (1) {
484 if (fibril_schedule_next_adv(FIBRIL_FROM_MANAGER)) {
485 futex_up(&async_futex);
486 /* async_futex is always held
487 * when entering manager fibril
488 */
489 continue;
490 }
491 futex_down(&async_futex);
492 if (!list_empty(&timeout_list)) {
493 waiter = list_get_instance(timeout_list.next, awaiter_t,
494 link);
495 gettimeofday(&tv, NULL);
496 if (tv_gteq(&tv, &waiter->expires)) {
497 futex_up(&async_futex);
498 handle_expired_timeouts();
499 continue;
500 } else
501 timeout = tv_sub(&waiter->expires, &tv);
502 } else
503 timeout = SYNCH_NO_TIMEOUT;
504 futex_up(&async_futex);
505
506 callid = ipc_wait_cycle(&call, timeout, SYNCH_FLAGS_NONE);
507
508 if (!callid) {
509 handle_expired_timeouts();
510 continue;
511 }
512
513 if (callid & IPC_CALLID_ANSWERED) {
514 continue;
515 }
516
517 handle_call(callid, &call);
518 }
519
520 return 0;
521}
522
523/** Function to start async_manager as a standalone fibril.
524 *
525 * When more kernel threads are used, one async manager should
526 * exist per thread.
527 */
528static int async_manager_fibril(void *arg)
529{
530 futex_up(&async_futex);
531 /* async_futex is always locked when entering
532 * manager */
533 async_manager_worker();
534
535 return 0;
536}
537
538/** Add one manager to manager list */
539void async_create_manager(void)
540{
541 fid_t fid;
542
543 fid = fibril_create(async_manager_fibril, NULL);
544 fibril_add_manager(fid);
545}
546
547/** Remove one manager from manager list */
548void async_destroy_manager(void)
549{
550 fibril_remove_manager();
551}
552
553/** Initialize internal structures needed for async manager */
554int _async_init(void)
555{
556 if (!hash_table_create(&conn_hash_table, CONN_HASH_TABLE_CHAINS, 1,
557 &conn_hash_table_ops)) {
558 printf("%s: cannot create hash table\n", "async");
559 return ENOMEM;
560 }
561
562 return 0;
563}
564
565/** IPC handler for messages in async framework
566 *
567 * Notify the fibril which is waiting for this message, that it arrived
568 */
569static void reply_received(void *private, int retval, ipc_call_t *data)
570{
571 amsg_t *msg = (amsg_t *) private;
572
573 msg->retval = retval;
574
575 futex_down(&async_futex);
576 /* Copy data after futex_down, just in case the
577 * call was detached
578 */
579 if (msg->dataptr)
580 *msg->dataptr = *data;
581
582 write_barrier();
583 /* Remove message from timeout list */
584 if (msg->wdata.inlist)
585 list_remove(&msg->wdata.link);
586 msg->done = 1;
587 if (! msg->wdata.active) {
588 msg->wdata.active = 1;
589 fibril_add_ready(msg->wdata.fid);
590 }
591 futex_up(&async_futex);
592}
593
594/** Send message and return id of the sent message
595 *
596 * The return value can be used as input for async_wait() to wait
597 * for completion.
598 */
599aid_t async_send_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2,
600 ipc_call_t *dataptr)
601{
602 amsg_t *msg;
603
604 if (in_interrupt_handler) {
605 printf("Cannot send asynchronous request in interrupt "
606 "handler.\n");
607 _exit(1);
608 }
609
610 msg = malloc(sizeof(*msg));
611 msg->done = 0;
612 msg->dataptr = dataptr;
613
614 msg->wdata.active = 1; /* We may sleep in next method, but it
615 * will use it's own mechanism */
616 ipc_call_async_2(phoneid, method, arg1, arg2, msg, reply_received, 1);
617
618 return (aid_t) msg;
619}
620
621/** Send message and return id of the sent message
622 *
623 * The return value can be used as input for async_wait() to wait
624 * for completion.
625 */
626aid_t async_send_3(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2,
627 ipcarg_t arg3, ipc_call_t *dataptr)
628{
629 amsg_t *msg;
630
631 if (in_interrupt_handler) {
632 printf("Cannot send asynchronous request in interrupt handler.\n");
633 _exit(1);
634 }
635
636 msg = malloc(sizeof(*msg));
637 msg->done = 0;
638 msg->dataptr = dataptr;
639
640 msg->wdata.active = 1; /* We may sleep in next method, but it
641 * will use it's own mechanism */
642 ipc_call_async_3(phoneid, method, arg1, arg2, arg3, msg, reply_received,
643 1);
644
645 return (aid_t) msg;
646}
647
648/** Wait for a message sent by async framework
649 *
650 * @param amsgid Message ID to wait for
651 * @param retval Pointer to variable where will be stored retval of the
652 * answered message. If NULL, it is ignored.
653 */
654void async_wait_for(aid_t amsgid, ipcarg_t *retval)
655{
656 amsg_t *msg = (amsg_t *) amsgid;
657
658 futex_down(&async_futex);
659 if (msg->done) {
660 futex_up(&async_futex);
661 goto done;
662 }
663
664 msg->wdata.fid = fibril_get_id();
665 msg->wdata.active = 0;
666 msg->wdata.inlist = 0;
667 /* Leave locked async_futex when entering this function */
668 fibril_schedule_next_adv(FIBRIL_TO_MANAGER);
669 /* futex is up automatically after fibril_schedule_next...*/
670done:
671 if (retval)
672 *retval = msg->retval;
673 free(msg);
674}
675
676/** Wait for a message sent by async framework with timeout
677 *
678 * @param amsgid Message ID to wait for
679 * @param retval Pointer to variable where will be stored retval
680 * of the answered message. If NULL, it is ignored.
681 * @param timeout Timeout in usecs
682 * @return 0 on success, ETIMEOUT if timeout expired
683 *
684 */
685int async_wait_timeout(aid_t amsgid, ipcarg_t *retval, suseconds_t timeout)
686{
687 amsg_t *msg = (amsg_t *) amsgid;
688
689 /* TODO: Let it go through the event read at least once */
690 if (timeout < 0)
691 return ETIMEOUT;
692
693 futex_down(&async_futex);
694 if (msg->done) {
695 futex_up(&async_futex);
696 goto done;
697 }
698
699 gettimeofday(&msg->wdata.expires, NULL);
700 tv_add(&msg->wdata.expires, timeout);
701
702 msg->wdata.fid = fibril_get_id();
703 msg->wdata.active = 0;
704 insert_timeout(&msg->wdata);
705
706 /* Leave locked async_futex when entering this function */
707 fibril_schedule_next_adv(FIBRIL_TO_MANAGER);
708 /* futex is up automatically after fibril_schedule_next...*/
709
710 if (!msg->done)
711 return ETIMEOUT;
712
713done:
714 if (retval)
715 *retval = msg->retval;
716 free(msg);
717
718 return 0;
719}
720
721/** Wait specified time, but in the meantime handle incoming events
722 *
723 * @param timeout Time in microseconds to wait
724 */
725void async_usleep(suseconds_t timeout)
726{
727 amsg_t *msg;
728
729 if (in_interrupt_handler) {
730 printf("Cannot call async_usleep in interrupt handler.\n");
731 _exit(1);
732 }
733
734 msg = malloc(sizeof(*msg));
735 if (!msg)
736 return;
737
738 msg->wdata.fid = fibril_get_id();
739 msg->wdata.active = 0;
740
741 gettimeofday(&msg->wdata.expires, NULL);
742 tv_add(&msg->wdata.expires, timeout);
743
744 futex_down(&async_futex);
745 insert_timeout(&msg->wdata);
746 /* Leave locked the async_futex when entering this function */
747 fibril_schedule_next_adv(FIBRIL_TO_MANAGER);
748 /* futex is up automatically after fibril_schedule_next_adv()...*/
749 free(msg);
750}
751
752/** Set function that is called when IPC_M_CONNECT_ME_TO is received.
753 *
754 * @param conn Function that will form a new fibril.
755 */
756void async_set_client_connection(async_client_conn_t conn)
757{
758 client_connection = conn;
759}
760void async_set_interrupt_received(async_client_conn_t conn)
761{
762 interrupt_received = conn;
763}
764
765/* Primitive functions for simple communication */
766void async_msg_3(int phoneid, ipcarg_t method, ipcarg_t arg1,
767 ipcarg_t arg2, ipcarg_t arg3)
768{
769 ipc_call_async_3(phoneid, method, arg1, arg2, arg3, NULL, NULL,
770 !in_interrupt_handler);
771}
772
773void async_msg_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2)
774{
775 ipc_call_async_2(phoneid, method, arg1, arg2, NULL, NULL,
776 !in_interrupt_handler);
777}
778
779/** @}
780 */
Note: See TracBrowser for help on using the repository browser.