Changeset 14f1db0 in mainline for uspace/lib/net/include/packet_remote.h
- Timestamp:
- 2010-04-09T12:54:57Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a1caa3c2
- Parents:
- 24ab58b3
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/packet_remote.h
r24ab58b3 r14f1db0 1 1 /* 2 * Copyright (c) 20 10 Martin Decky2 * Copyright (c) 2009 Lukas Mejdrech 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup tl_standalone30 * 29 /** @addtogroup packet 30 * @{ 31 31 */ 32 32 33 #ifndef __ TL_STANDALONE_H__34 #define __ TL_STANDALONE_H__33 #ifndef __NET_PACKET_REMOTE_H__ 34 #define __NET_PACKET_REMOTE_H__ 35 35 36 #include <ipc/ipc.h> 37 #include <async.h> 36 #include <packet/packet.h> 38 37 39 extern int tl_module_message(ipc_callid_t callid, ipc_call_t *call, 40 ipc_call_t *answer, int *answer_count); 41 extern int tl_module_start(async_client_conn_t client_connection); 38 extern int packet_translate_remote(int, packet_ref, packet_id_t); 39 extern packet_t packet_get_4_remote(int, size_t, size_t, size_t, size_t); 40 extern packet_t packet_get_1_remote(int, size_t); 41 extern void pq_release_remote(int, packet_id_t); 42 42 43 43 #endif
Note:
See TracChangeset
for help on using the changeset viewer.