Changeset 7390870 in mainline


Ignore:
Timestamp:
2010-09-26T12:36:26Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
edba2b6f
Parents:
c5b59ce
Message:

Move ADT's used by the networking stack to libc.

Location:
uspace/lib
Files:
2 edited
9 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/Makefile

    rc5b59ce r7390870  
    8989        generic/adt/list.o \
    9090        generic/adt/hash_table.o \
     91        generic/adt/dynamic_fifo.c \
     92        generic/adt/measured_strings.c \
     93        generic/adt/char_map.c \
    9194        generic/time.c \
    9295        generic/err.c \
  • uspace/lib/c/generic/adt/measured_strings.c

    rc5b59ce r7390870  
    3636 */
    3737
     38#include <adt/measured_strings.h>
    3839#include <malloc.h>
    3940#include <mem.h>
     
    4142#include <errno.h>
    4243#include <err.h>
    43 
    44 #include <ipc/ipc.h>
    45 
    46 #include <net_modules.h>
    47 #include <adt/measured_strings.h>
     44#include <async.h>
     45
    4846
    4947measured_string_ref measured_string_create_bulk(const char * string, size_t length){
  • uspace/lib/socket/Makefile

    rc5b59ce r7390870  
    4242        packet/packet.c \
    4343        packet/packet_client.c \
    44         packet/packet_server.c \
    45         adt/dynamic_fifo.c \
    46         adt/measured_strings.c \
    47         adt/char_map.c
     44        packet/packet_server.c
    4845
    4946include $(USPACE_PREFIX)/Makefile.common
Note: See TracChangeset for help on using the changeset viewer.