-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from hermit-os/new-repo
chore: change repo links
- Loading branch information
Showing
10 changed files
with
30 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
[package] | ||
name = "rftrace-hermit-rs-test" | ||
version = "0.1.0" | ||
authors = ["Thomas Lambertz <[email protected]>"] | ||
authors = [ | ||
"Martin Kröning <[email protected]>", | ||
"Thomas Lambertz <[email protected]>", | ||
] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
||
|
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
[package] | ||
name = "rftrace-rs-test" | ||
version = "0.1.0" | ||
authors = ["Thomas Lambertz <[email protected]>"] | ||
authors = [ | ||
"Martin Kröning <[email protected]>", | ||
"Thomas Lambertz <[email protected]>", | ||
] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
||
|
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 |
---|---|---|
@@ -1,15 +1,18 @@ | ||
[package] | ||
name = "rftrace-frontend-ffi" | ||
version = "0.1.0" | ||
authors = ["Thomas Lambertz <[email protected]>"] | ||
authors = [ | ||
"Martin Kröning <[email protected]>", | ||
"Thomas Lambertz <[email protected]>", | ||
] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
||
keywords = ["tracing", "function", "uftrace", "mcount", "instrumentation"] | ||
categories = ["development-tools::profiling"] | ||
description = "Default rftracer frontend as a static library so it can be called from C code." | ||
readme = "README.md" | ||
repository = "https://github.com/tlambertz/rftrace" | ||
repository = "https://github.com/hermit-os/rftrace" | ||
|
||
[lib] | ||
crate-type = ["staticlib"] | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This is an ffi wrapper around rftrace-frontend, enabling calling it from c code | ||
You can find a usage example in the [repository](https://github.com/tlambertz/rftrace/examples/c) | ||
A lot of documentation can be found in the parent workspaces [readme](https://github.com/tlambertz/rftrace). | ||
You can find a usage example in the [repository](https://github.com/hermit-os/rftrace/examples/c) | ||
A lot of documentation can be found in the parent workspaces [readme](https://github.com/hermit-os/rftrace). |
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 |
---|---|---|
@@ -1,15 +1,18 @@ | ||
[package] | ||
name = "rftrace-frontend" | ||
version = "0.1.0" | ||
authors = ["Thomas Lambertz <[email protected]>"] | ||
authors = [ | ||
"Martin Kröning <[email protected]>", | ||
"Thomas Lambertz <[email protected]>", | ||
] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
||
keywords = ["tracing", "function", "uftrace", "mcount", "instrumentation"] | ||
categories = ["development-tools::profiling"] | ||
description = "Rftracer frontend for writing uftrace compatible traces." | ||
readme = "README.md" | ||
repository = "https://github.com/tlambertz/rftrace" | ||
repository = "https://github.com/hermit-os/rftrace" | ||
|
||
[lib] | ||
crate-type = ['rlib'] | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
This crate provides a possible frontend for rftracer. | ||
It can initialize an event buffer, enable/disable tracing and save the trace to disk in a uftrace compatible format. | ||
A lot of documentation can be found in the parent workspaces [readme](https://github.com/tlambertz/rftrace). | ||
A lot of documentation can be found in the parent workspaces [readme](https://github.com/hermit-os/rftrace). |
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 |
---|---|---|
@@ -1,7 +1,10 @@ | ||
[package] | ||
name = "rftrace" | ||
version = "0.2.0" | ||
authors = ["Thomas Lambertz <[email protected]>"] | ||
authors = [ | ||
"Martin Kröning <[email protected]>", | ||
"Thomas Lambertz <[email protected]>", | ||
] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
build = "build.rs" | ||
|
@@ -10,7 +13,7 @@ keywords = ["tracing", "function", "uftrace", "mcount", "instrumentation"] | |
categories = ["no-std", "development-tools::profiling"] | ||
description = "Function tracer backend. Logs all functions entries and exits. Works on all software compiled with mcount() instrumentation." | ||
readme = "README.md" | ||
repository = "https://github.com/tlambertz/rftrace" | ||
repository = "https://github.com/hermit-os/rftrace" | ||
|
||
include = [ | ||
"**/*.rs", | ||
|
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