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/packet/packet_messages.h

    rb5cbff4 r71b00dcc  
    6969/** Returns the protocol service message parameter.
    7070 */
    71 #define ARP_GET_PROTO( call )           ( services_t ) IPC_GET_ARG2( * call )
     71#define ARP_GET_PROTO(call)             (services_t) IPC_GET_ARG2(*call)
    7272
    7373/** Returns the packet identifier message parameter.
    7474 */
    75 #define IPC_GET_ID( call )                      ( packet_id_t ) IPC_GET_ARG1( * call )
     75#define IPC_GET_ID(call)                        (packet_id_t) IPC_GET_ARG1(*call)
    7676
    7777/** Returns the maximal content length message parameter.
    7878 */
    79 #define IPC_GET_CONTENT( call )         ( size_t ) IPC_GET_ARG1( * call )
     79#define IPC_GET_CONTENT(call)           (size_t) IPC_GET_ARG1(*call)
    8080
    8181/** Returns the maximal address length message parameter.
    8282 */
    83 #define IPC_GET_ADDR_LEN( call )        ( size_t ) IPC_GET_ARG2( * call )
     83#define IPC_GET_ADDR_LEN(call)  (size_t) IPC_GET_ARG2(*call)
    8484
    8585/** Returns the maximal prefix length message parameter.
    8686 */
    87 #define IPC_GET_PREFIX( call )          ( size_t ) IPC_GET_ARG3( * call )
     87#define IPC_GET_PREFIX(call)            (size_t) IPC_GET_ARG3(*call)
    8888
    8989/** Returns the maximal suffix length message parameter.
    9090 */
    91 #define IPC_GET_SUFFIX( call )          ( size_t ) IPC_GET_ARG4( * call )
     91#define IPC_GET_SUFFIX(call)            (size_t) IPC_GET_ARG4(*call)
    9292
    9393#endif
Note: See TracChangeset for help on using the changeset viewer.