Ignore:
Timestamp:
2010-11-19T21:26:08Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a7811f17, cc3c2a1c
Parents:
4eca056
Message:

Remove xxx_ref typedefs (part 5).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/net/socket_client.c

    r4eca056 raaa3f33a  
    157157
    158158        /** Active sockets. */
    159         sockets_ref sockets;
     159        sockets_t *sockets;
    160160
    161161        /** Safety lock.
     
    180180 *  @returns            The active sockets.
    181181 */
    182 static sockets_ref socket_get_sockets(void)
     182static sockets_t *socket_get_sockets(void)
    183183{
    184184        if (!socket_globals.sockets) {
    185185                socket_globals.sockets =
    186                     (sockets_ref) malloc(sizeof(sockets_t));
     186                    (sockets_t *) malloc(sizeof(sockets_t));
    187187                if (!socket_globals.sockets)
    188188                        return NULL;
     
    327327static int socket_generate_new_id(void)
    328328{
    329         sockets_ref sockets;
     329        sockets_t *sockets;
    330330        int socket_id = 0;
    331331        int count;
Note: See TracChangeset for help on using the changeset viewer.