Ignore:
Timestamp:
2010-04-04T22:07:05Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
23de644
Parents:
9f10660f (diff), 73060801 (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.
Message:

Merge mainline changes.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/include/il_standalone.h

    r9f10660f r3aae4e8  
    11/*
    2  * Copyright (c) 2009 Lukas Mejdrech
     2 * Copyright (c) 2010 Martin Decky
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup net
     29/** @addtogroup il_standalone
    3030 *  @{
    3131 */
    3232
    33 /** @file
    34  *  Networking subsystem compilation configuration.
    35  */
     33#ifndef __IL_STANDALONE_H__
     34#define __IL_STANDALONE_H__
    3635
    37 #ifndef __NET_CONFIGURATION_H__
    38 #define __NET_CONFIGURATION_H__
     36#include <ipc/ipc.h>
     37#include <async.h>
    3938
    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 /*@}*/
     39extern int il_module_message(ipc_callid_t callid, ipc_call_t *call,
     40    ipc_call_t *answer, int *answer_count);
     41extern int il_module_start(async_client_conn_t client_connection);
    9142
    9243#endif
Note: See TracChangeset for help on using the changeset viewer.