Browse Source

print_load_posix under DARWIN: remove unused variable basic_info (#5364)

sbg
Beat Küng 9 years ago committed by Lorenz Meier
parent
commit
1fffd731b1
  1. 3
      src/modules/systemlib/print_load_posix.c

3
src/modules/systemlib/print_load_posix.c

@ -114,7 +114,6 @@ void print_load(uint64_t t, int fd, struct print_load_s *print_state)
return; return;
} }
task_basic_info_t basic_info;
thread_array_t thread_list; thread_array_t thread_list;
mach_msg_type_number_t th_cnt; mach_msg_type_number_t th_cnt;
@ -124,8 +123,6 @@ void print_load(uint64_t t, int fd, struct print_load_s *print_state)
thread_basic_info_t basic_info_th; thread_basic_info_t basic_info_th;
uint32_t stat_thread = 0; uint32_t stat_thread = 0;
basic_info = (task_basic_info_t)tinfo;
// get all threads of the PX4 main task // get all threads of the PX4 main task
kr = task_threads(task_handle, &thread_list, &th_cnt); kr = task_threads(task_handle, &thread_list, &th_cnt);

Loading…
Cancel
Save