forked from libbpf/blazesym
-
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.
Move functionality related to kernel symbolization and inspection into a dedicated sub-module, kernel. In so doing we clean up the source root somewhat and group closely related functionality. Ideally we'd move more of the kernel resolver creation logic in there as well, but that is left for a later time. Signed-off-by: Daniel Müller <deso@posteo.net>
- Loading branch information
Showing
5 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
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,7 @@ | ||
mod ksym; | ||
mod resolver; | ||
|
||
// TODO: KsymResolver should ideally be an implementation detail. | ||
pub(crate) use ksym::KSymResolver; | ||
pub(crate) use ksym::KALLSYMS; | ||
pub(crate) use resolver::KernelResolver; |
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