Changeset 8fc0f47c in mainline for uspace/lib/bithenge/src
- Timestamp:
- 2012-08-21T10:48:03Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2ee05261
- Parents:
- 67edca6
- Location:
- uspace/lib/bithenge/src
- Files:
-
- 14 moved
Legend:
- Unmodified
- Added
- Removed
-
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.