-
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: 312267 b: refs/heads/master c: e078ba1 h: refs/heads/master i: 312265: 14749d0 312263: 3af7896 v: v3
- Loading branch information
Namhyung Kim
authored and
Arnaldo Carvalho de Melo
committed
Jun 19, 2012
1 parent
9fdd9eb
commit 266f745
Showing
3 changed files
with
92 additions
and
1 deletion.
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: a6b702c117f839023814c1e03453c701d26de522 | ||
refs/heads/master: e078ba14dff5c315ce19a978574883f417d2cfa0 |
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,12 +1,17 @@ | ||
#include "gtk.h" | ||
#include "../../util/cache.h" | ||
#include "../../util/debug.h" | ||
|
||
extern struct perf_error_ops perf_gtk_eops; | ||
|
||
int perf_gtk__init(void) | ||
{ | ||
perf_error__register(&perf_gtk_eops); | ||
return gtk_init_check(NULL, NULL) ? 0 : -1; | ||
} | ||
|
||
void perf_gtk__exit(bool wait_for_ok __used) | ||
{ | ||
perf_error__unregister(&perf_gtk_eops); | ||
gtk_main_quit(); | ||
} |
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