-
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.
yaml --- r: 323658 b: refs/heads/master c: 393be2e h: refs/heads/master v: v3
- Loading branch information
Namhyung Kim
authored and
Arnaldo Carvalho de Melo
committed
Aug 9, 2012
1 parent
a6fade3
commit 4a41c97
Showing
8 changed files
with
107 additions
and
18 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,2 +1,2 @@ | ||
--- | ||
refs/heads/master: e5a1845fc0aeca85c98115980c3531129f87e18d | ||
refs/heads/master: 393be2e3747ea3ef0d2e724115a5f42b2fa50dbd |
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
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,39 @@ | ||
#include "symbol.h" | ||
|
||
|
||
int filename__read_build_id(const char *filename __used, void *bf __used, | ||
size_t size __used) | ||
{ | ||
return -1; | ||
} | ||
|
||
int sysfs__read_build_id(const char *filename __used, void *build_id __used, | ||
size_t size __used) | ||
{ | ||
return -1; | ||
} | ||
|
||
int filename__read_debuglink(const char *filename __used, | ||
char *debuglink __used, size_t size __used) | ||
{ | ||
return -1; | ||
} | ||
|
||
int dso__synthesize_plt_symbols(struct dso *dso __used, char *name __used, | ||
struct map *map __used, | ||
symbol_filter_t filter __used) | ||
{ | ||
return 0; | ||
} | ||
|
||
int dso__load_sym(struct dso *dso __used, struct map *map __used, | ||
const char *name __used, int fd __used, | ||
symbol_filter_t filter __used, int kmodule __used, | ||
int want_symtab __used) | ||
{ | ||
return 0; | ||
} | ||
|
||
void symbol__elf_init(void) | ||
{ | ||
} |