Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
8322f800
Commit
8322f800
authored
Sep 08, 2017
by
Teng Qin
Committed by
Brenden Blanco
Sep 08, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused Mount Namespace helpers
parent
15b15edb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
14 deletions
+0
-14
src/cc/bcc_syms.cc
src/cc/bcc_syms.cc
+0
-11
src/cc/bcc_syms.h
src/cc/bcc_syms.h
+0
-3
No files found.
src/cc/bcc_syms.cc
View file @
8322f800
...
...
@@ -469,15 +469,4 @@ invalid_module:
}
return
-
1
;
}
void
*
bcc_enter_mount_ns
(
int
pid
)
{
return
static_cast
<
void
*>
(
new
ProcMountNSGuard
(
pid
));
}
void
bcc_exit_mount_ns
(
void
**
guard
)
{
if
(
guard
&&
*
guard
)
{
delete
static_cast
<
ProcMountNSGuard
*>
(
*
guard
);
*
guard
=
NULL
;
}
}
}
src/cc/bcc_syms.h
View file @
8322f800
...
...
@@ -82,9 +82,6 @@ int bcc_resolve_symname(const char *module, const char *symname,
struct
bcc_symbol_option
*
option
,
struct
bcc_symbol
*
sym
);
void
*
bcc_enter_mount_ns
(
int
pid
);
void
bcc_exit_mount_ns
(
void
**
guard
);
#ifdef __cplusplus
}
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment