forked from happi/theBeamBook
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving chapter files to chapters dir. (happi#33)
* Moving chapter files to chapters dir. * Adding .gitignore to make sure we have an ebin. * Add .gitignore to make keep xml dir. * Fix shell language. * Remove revision history and add git contributers. * Fix build. * Fixing contributors generator.
- Loading branch information
Showing
27 changed files
with
634 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#/bin/sh | ||
|
||
git log | grep Author | sed -- 's/Author: /\* /g' | sed -- 's/<.*>//g' | sort -u | sed -- 's/\* Your Name//g' > $1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
|
||
[[AP-listings]] | ||
== Appendix B: Full Code Listings | ||
|
||
[source,erlang] | ||
---- | ||
include::../code/beam_modules_chapter/src/beamfile.erl[] | ||
---- | ||
|
||
// [source,erlang] | ||
// ---- | ||
// include::../stack_machine.erl[] | ||
// ---- | ||
|
||
[source,erlang] | ||
---- | ||
include::../code/compiler_chapter/src/world.erl[] | ||
---- | ||
|
||
[source,erlang] | ||
---- | ||
include::../code/compiler_chapter/src/json_parser.erl[] | ||
---- | ||
|
||
[source,erlang] | ||
---- | ||
include::../code/compiler_chapter/src/json_test.erl[] | ||
---- | ||
|
||
[source,erlang] | ||
---- | ||
include::../code/beam_chapter/src/stack_machine_compiler.erl[] | ||
---- | ||
|
||
[source,c] | ||
---- | ||
include::../code/beam_chapter/src/vsm.c[] | ||
---- | ||
|
||
[source,c] | ||
---- | ||
include::../code/beam_chapter/src/token_threaded_vsm.c[] | ||
---- | ||
|
||
// [source,erlang] | ||
// ---- | ||
// include::../add.erl[] | ||
// ---- | ||
|
||
// [source,beam] | ||
// ---- | ||
// include::../add.S[] | ||
// ---- | ||
|
||
[[listing-share]] | ||
|
||
[source,erlang] | ||
---- | ||
include::../code/memory_chapter/src/share.erl[] | ||
---- | ||
|
||
[[listing-send]] | ||
|
||
|
||
[source,erlang] | ||
---- | ||
include::../code/memory_chapter/src/send.erl[] | ||
---- | ||
|
||
[[listing-lb]] | ||
Load Balancer. | ||
|
||
[source,erlang] | ||
---- | ||
include::../code/memory_chapter/src/lb.erl[] | ||
---- | ||
|
||
// [[listing-lbS]] | ||
// [source,beam] | ||
// ---- | ||
// include::../lb.S[] | ||
// ---- | ||
|
||
// [[listing-gdb]] | ||
// [source,c] | ||
// ---- | ||
// include::../gdb_scripts[] | ||
// ---- |
0
beam.asciidoc → chapters/beam.asciidoc
100755 → 100644
File renamed without changes.
0
beam_instructions.asciidoc → chapters/beam_instructions.asciidoc
100755 → 100644
File renamed without changes.
File renamed without changes.
0
beam_loader.asciidoc → chapters/beam_loader.asciidoc
100755 → 100644
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.