Skip to content

Commit

Permalink
Merge pull request #34 from hermit-os/new-repo
Browse files Browse the repository at this point in the history
chore: change repo links
  • Loading branch information
mkroening authored Mar 25, 2024
2 parents 0124bed + 5b380c9 commit 7be73d7
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 15 deletions.
5 changes: 4 additions & 1 deletion examples/hermitrust/Cargo.toml
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"

Expand Down
5 changes: 4 additions & 1 deletion examples/rust/Cargo.toml
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"

Expand Down
7 changes: 5 additions & 2 deletions rftrace-frontend-ffi/Cargo.toml
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"]
Expand Down
4 changes: 2 additions & 2 deletions rftrace-frontend-ffi/README.md
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).
4 changes: 2 additions & 2 deletions rftrace-frontend-ffi/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! 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).
use std::ffi::CStr;
use std::os::raw::c_char;
Expand Down
7 changes: 5 additions & 2 deletions rftrace-frontend/Cargo.toml
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']
Expand Down
2 changes: 1 addition & 1 deletion rftrace-frontend/README.md
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).
2 changes: 1 addition & 1 deletion rftrace-frontend/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! 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).
#![feature(vec_into_raw_parts)]
extern crate byteorder;
Expand Down
7 changes: 5 additions & 2 deletions rftrace/Cargo.toml
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"
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion rftrace/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Backend for rftrace.
//! Provides an `mcount` implementation, which does nothing by default but can be enabled via frontend.
//! 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).
#![cfg_attr(feature = "staticlib", feature(asm))]
#![cfg_attr(feature = "staticlib", feature(naked_functions))]
Expand Down

0 comments on commit 7be73d7

Please sign in to comment.