-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated readme with build and install instructions * nicer * fixed repo link * x86_64 arch detection fix * Trace container with meta information. It's pull request must be merget with pull request bpt-trace-PR to bap-pintrace repository. * Support streams. This patch adds support for non-seekable devices. It also cleans the code and simplifies the implementation. 1. Removed any actions from the destructor. A finish member-function must be called. 2. Removed an overload for a container, there is no need to bloat the interface. 3. Header is initialized at the creation time. 4. Removed unnecessary instance variables and member functions. The seek function is no longer called without a purpose. At the finish procedure, if the device is seekable, we're storing the table of contents and update an offset in the header. Otherwise, we just skip it. * finish the trace in the copytrace. As now autofinish is disabled.
- Loading branch information
Showing
6 changed files
with
94 additions
and
139 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Build tracedump utility: | ||
|
||
``` | ||
bapbuild tracedump.native | ||
``` |
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,2 @@ | ||
true : package(bap-traces), package(cmdliner) | ||
<*.native> : package(findlib.dynload) |
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