Ignore:
Timestamp:
2010-03-07T22:51:38Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
60ab6c3
Parents:
b5cbff4 (diff), 31c80a5 (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 from lp:~lukasmejdrech/helenos/network.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/structures/measured_strings.h

    rb5cbff4 r71b00dcc  
    5757        /** Character string data.
    5858         */
    59         char *  value;
     59        char * value;
    6060        /** Character string length.
    6161         */
    62         size_t  length;
     62        size_t length;
    6363};
    6464
     
    7171 *  @returns NULL if there is not enough memory left.
    7272 */
    73 measured_string_ref     measured_string_create_bulk( const char * string, size_t length );
     73measured_string_ref measured_string_create_bulk(const char * string, size_t length);
    7474
    7575/** Copies the given measured string with separated header and data parts.
     
    7979 *  @returns NULL if there is not enough memory left.
    8080 */
    81 measured_string_ref     measured_string_copy( measured_string_ref source );
     81measured_string_ref measured_string_copy(measured_string_ref source);
    8282
    8383/** Receives a&nbsp;measured strings array from a&nbsp;calling module.
     
    9595 *  @returns Other error codes as defined for the async_data_write_finalize() function.
    9696 */
    97 int     measured_strings_receive( measured_string_ref * strings, char ** data, size_t count );
     97int measured_strings_receive(measured_string_ref * strings, char ** data, size_t count);
    9898
    9999/** Replies the given measured strings array to a&nbsp;calling module.
     
    108108 *  @returns Other error codes as defined for the async_data_read_finalize() function.
    109109 */
    110 int     measured_strings_reply( const measured_string_ref strings, size_t count );
     110int measured_strings_reply(const measured_string_ref strings, size_t count);
    111111
    112112/** Receives a&nbsp;measured strings array from another module.
     
    124124 *  @returns Other error codes as defined for the async_data_read_start() function.
    125125 */
    126 int     measured_strings_return( int phone, measured_string_ref * strings, char ** data, size_t count );
     126int measured_strings_return(int phone, measured_string_ref * strings, char ** data, size_t count);
    127127
    128128/** Sends the given measured strings array to another module.
     
    136136 *  @returns Other error codes as defined for the async_data_write_start() function.
    137137 */
    138 int     measured_strings_send( int phone, const measured_string_ref strings, size_t count );
     138int measured_strings_send(int phone, const measured_string_ref strings, size_t count);
    139139
    140140#endif
Note: See TracChangeset for help on using the changeset viewer.