gallium/hud: rename API-thread-busy to main-thread-busy

Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
This commit is contained in:
Marek Olšák 2017-06-21 19:54:45 +02:00
parent d1513edaa0
commit 7492201c4e
3 changed files with 5 additions and 5 deletions

View File

@ -1194,8 +1194,8 @@ hud_parse_env_var(struct hud_context *hud, const char *env)
else if (sscanf(name, "cpu%u%s", &i, s) == 1) {
hud_cpu_graph_install(pane, i);
}
else if (strcmp(name, "API-thread-busy") == 0) {
hud_api_thread_busy_install(pane);
else if (strcmp(name, "main-thread-busy") == 0) {
hud_main_thread_busy_install(pane, name);
}
#if HAVE_GALLIUM_EXTRA_HUD
else if (sscanf(name, "nic-rx-%s", arg_name) == 1) {

View File

@ -266,7 +266,7 @@ query_api_thread_busy_status(struct hud_graph *gr)
}
void
hud_api_thread_busy_install(struct hud_pane *pane)
hud_main_thread_busy_install(struct hud_pane *pane, const char *name)
{
struct hud_graph *gr;
@ -274,7 +274,7 @@ hud_api_thread_busy_install(struct hud_pane *pane)
if (!gr)
return;
strcpy(gr->name, "API-thread-busy");
strcpy(gr->name, name);
gr->query_data = CALLOC_STRUCT(thread_info);
if (!gr->query_data) {

View File

@ -93,7 +93,7 @@ int hud_get_num_cpus(void);
void hud_fps_graph_install(struct hud_pane *pane);
void hud_cpu_graph_install(struct hud_pane *pane, unsigned cpu_index);
void hud_api_thread_busy_install(struct hud_pane *pane);
void hud_main_thread_busy_install(struct hud_pane *pane, const char *name);
void hud_pipe_query_install(struct hud_batch_query_context **pbq,
struct hud_pane *pane, struct pipe_context *pipe,
const char *name, unsigned query_type,