Changeset 59ecd4a3 in mainline for uspace/lib/net/include/il_standalone.h
- Timestamp:
- 2010-04-04T21:41:47Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5db9084
- Parents:
- 36a75a2 (diff), ee7e82a9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/il_standalone.h
r36a75a2 r59ecd4a3 1 1 /* 2 * Copyright (c) 20 09 Lukas Mejdrech2 * Copyright (c) 2010 Martin Decky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup net29 /** @addtogroup il_standalone 30 30 * @{ 31 31 */ 32 32 33 /** @file 34 * Networking subsystem compilation configuration. 35 */ 33 #ifndef __IL_STANDALONE_H__ 34 #define __IL_STANDALONE_H__ 36 35 37 #i fndef __NET_CONFIGURATION_H__38 # define __NET_CONFIGURATION_H__36 #include <ipc/ipc.h> 37 #include <async.h> 39 38 40 /** Activates the self test. 41 */ 42 #define NET_SELF_TEST 0 43 44 /** @name Specific self tests switches 45 */ 46 /*@{*/ 47 48 /** Activates the char map self test. 49 * The NET_SELF_TEST has to be activated. 50 * @see char_map.h 51 */ 52 #define NET_SELF_TEST_CHAR_MAP 1 53 54 /** Activates the CRC computation self test. 55 * The NET_SELF_TEST has to be activated. 56 * @see crc.h 57 */ 58 #define NET_SELF_TEST_CRC 1 59 60 /** Activates the dynamic fifo self test. 61 * The NET_SELF_TEST has to be activated. 62 * @see dynamic_fifo.h 63 */ 64 #define NET_SELF_TEST_DYNAMIC_FIFO 1 65 66 /** Activates the generic char map self test. 67 * The NET_SELF_TEST has to be activated. 68 * @see generic_char_map.h 69 */ 70 #define NET_SELF_TEST_GENERIC_CHAR_MAP 1 71 72 /** Activates the generic field self test. 73 * The NET_SELF_TEST has to be activated. 74 * @see generic_field.h 75 */ 76 #define NET_SELF_TEST_GENERIC_FIELD 1 77 78 /** Activates the integral map self test. 79 * The NET_SELF_TEST has to be activated. 80 * @see int_map.h 81 */ 82 #define NET_SELF_TEST_INT_MAP 1 83 84 /** Activates the measured strings self test. 85 * The NET_SELF_TEST has to be activated. 86 * @see measured_strings.h 87 */ 88 #define NET_SELF_TEST_MEASURED_STRINGS 1 89 90 /*@}*/ 39 extern int il_module_message(ipc_callid_t callid, ipc_call_t *call, 40 ipc_call_t *answer, int *answer_count); 41 extern int il_module_start(async_client_conn_t client_connection); 91 42 92 43 #endif
Note:
See TracChangeset
for help on using the changeset viewer.