Changeset 8fc0f47c in mainline
- Timestamp:
- 2012-08-21T10:48:03Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2ee05261
- Parents:
- 67edca6
- Location:
- uspace
- Files:
-
- 3 edited
- 27 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bithenge/Makefile
r67edca6 r8fc0f47c 29 29 USPACE_PREFIX = ../.. 30 30 LIBS = $(LIBBITHENGE_PREFIX)/libbithenge.a $(LIBBLOCK_PREFIX)/libblock.a 31 EXTRA_CFLAGS = -I$(LIBBITHENGE_PREFIX) -D__HELENOS__31 EXTRA_CFLAGS = -I$(LIBBITHENGE_PREFIX)/include -D__HELENOS__ 32 32 BINARY = bithenge 33 33 -
uspace/app/bithenge/test.c
r67edca6 r8fc0f47c 39 39 #include <stdlib.h> 40 40 #include <sys/types.h> 41 #include "blob.h"42 #include "source.h"43 #include "print.h"44 #include "script.h"45 #include "transform.h"46 #include "tree.h"41 #include <bithenge/blob.h> 42 #include <bithenge/source.h> 43 #include <bithenge/print.h> 44 #include <bithenge/script.h> 45 #include <bithenge/transform.h> 46 #include <bithenge/tree.h> 47 47 48 48 int main(int argc, char *argv[]) -
uspace/lib/bithenge/Makefile
r67edca6 r8fc0f47c 29 29 USPACE_PREFIX = ../.. 30 30 LIBRARY = libbithenge 31 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -D__HELENOS__ 31 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -D__HELENOS__ -Iinclude 32 32 33 33 SOURCES = \ 34 helenos/block.c \35 blob.c \36 compound.c \37 expression.c \38 file.c \39 print.c \40 s cript.c \41 s equence.c \42 s ource.c \43 transform.c \44 tree.c34 src/helenos/block.c \ 35 src/blob.c \ 36 src/compound.c \ 37 src/expression.c \ 38 src/file.c \ 39 src/print.c \ 40 src/script.c \ 41 src/sequence.c \ 42 src/source.c \ 43 src/transform.c \ 44 src/tree.c 45 45 46 46 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/bithenge/src/blob.c
r67edca6 r8fc0f47c 38 38 #include <errno.h> 39 39 #include <stdlib.h> 40 #include "blob.h"41 #include "os.h"42 #include "tree.h"40 #include <bithenge/blob.h> 41 #include <bithenge/os.h> 42 #include <bithenge/tree.h> 43 43 44 44 /** Initialize a random access blob. -
uspace/lib/bithenge/src/compound.c
r67edca6 r8fc0f47c 36 36 37 37 #include <stdlib.h> 38 #include "compound.h"39 #include "expression.h"40 #include "os.h"41 #include "transform.h"42 #include "tree.h"38 #include <bithenge/compound.h> 39 #include <bithenge/expression.h> 40 #include <bithenge/os.h> 41 #include <bithenge/transform.h> 42 #include <bithenge/tree.h> 43 43 44 44 -
uspace/lib/bithenge/src/expression.c
r67edca6 r8fc0f47c 38 38 #include <errno.h> 39 39 #include <stdlib.h> 40 #include "blob.h"41 #include "expression.h"42 #include "os.h"43 #include "transform.h"44 #include "tree.h"40 #include <bithenge/blob.h> 41 #include <bithenge/expression.h> 42 #include <bithenge/os.h> 43 #include <bithenge/transform.h> 44 #include <bithenge/tree.h> 45 45 46 46 /** Initialize a new expression. -
uspace/lib/bithenge/src/failure.c
r67edca6 r8fc0f47c 46 46 #include <unistd.h> 47 47 #define BITHENGE_FAILURE_DECLS_ONLY 1 48 #include "failure.h"48 #include <bithenge/failure.h> 49 49 #include "os.h" 50 50 -
uspace/lib/bithenge/src/file.c
r67edca6 r8fc0f47c 44 44 #include <sys/types.h> 45 45 #include <unistd.h> 46 #include "blob.h"47 #include "file.h"48 #include "os.h"46 #include <bithenge/blob.h> 47 #include <bithenge/file.h> 48 #include <bithenge/os.h> 49 49 50 50 typedef struct { -
uspace/lib/bithenge/src/helenos/block.c
r67edca6 r8fc0f47c 42 42 #include <macros.h> 43 43 #include <stdlib.h> 44 #include "../blob.h"44 #include <bithenge/blob.h> 45 45 #include "block.h" 46 46 -
uspace/lib/bithenge/src/helenos/block.h
r67edca6 r8fc0f47c 39 39 40 40 #include <loc.h> 41 #include "../blob.h"41 #include <bithenge/tree.h> 42 42 43 43 int bithenge_new_block_blob(bithenge_node_t **, service_id_t); -
uspace/lib/bithenge/src/print.c
r67edca6 r8fc0f47c 40 40 #include <stdarg.h> 41 41 #include <stdio.h> 42 #include "blob.h"43 #include "print.h"44 #include "tree.h"42 #include <bithenge/blob.h> 43 #include <bithenge/print.h> 44 #include <bithenge/tree.h> 45 45 46 46 typedef struct { -
uspace/lib/bithenge/src/script.c
r67edca6 r8fc0f47c 38 38 #include <stdio.h> 39 39 #include <stdlib.h> 40 #include "compound.h"41 #include "expression.h"42 #include "os.h"43 #include "script.h"44 #include "sequence.h"45 #include "transform.h"46 #include "tree.h"40 #include <bithenge/compound.h> 41 #include <bithenge/expression.h> 42 #include <bithenge/os.h> 43 #include <bithenge/script.h> 44 #include <bithenge/sequence.h> 45 #include <bithenge/transform.h> 46 #include <bithenge/tree.h> 47 47 48 48 /** @cond internal */ -
uspace/lib/bithenge/src/sequence.c
r67edca6 r8fc0f47c 36 36 37 37 #include <stdlib.h> 38 #include "blob.h"39 #include "expression.h"40 #include "os.h"41 #include "sequence.h"42 #include "tree.h"38 #include <bithenge/blob.h> 39 #include <bithenge/expression.h> 40 #include <bithenge/os.h> 41 #include <bithenge/sequence.h> 42 #include <bithenge/tree.h> 43 43 44 44 -
uspace/lib/bithenge/src/source.c
r67edca6 r8fc0f47c 37 37 #include <errno.h> 38 38 #include <stdlib.h> 39 #include "blob.h"40 #include "file.h"41 #include "source.h"39 #include <bithenge/blob.h> 40 #include <bithenge/file.h> 41 #include <bithenge/source.h> 42 42 43 43 #ifdef __HELENOS__ -
uspace/lib/bithenge/src/transform.c
r67edca6 r8fc0f47c 39 39 #include <stdarg.h> 40 40 #include <stdlib.h> 41 #include "blob.h"42 #include "os.h"43 #include "print.h"44 #include "transform.h"41 #include <bithenge/blob.h> 42 #include <bithenge/os.h> 43 #include <bithenge/print.h> 44 #include <bithenge/transform.h> 45 45 46 46 -
uspace/lib/bithenge/src/tree.c
r67edca6 r8fc0f47c 37 37 #include <errno.h> 38 38 #include <stdlib.h> 39 #include "blob.h"40 #include "os.h"41 #include "tree.h"39 #include <bithenge/blob.h> 40 #include <bithenge/os.h> 41 #include <bithenge/tree.h> 42 42 43 43 static void blob_destroy(bithenge_node_t *base)
Note:
See TracChangeset
for help on using the changeset viewer.