mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Userland: Resolve unused-but-set-varaible warnings
These are almost always bugs, so enable globally. Remove unused counter variables in SystemMonitor and disk_benchmark.
This commit is contained in:
parent
d809637023
commit
f8ea9cd64e
Notes:
sideshowbarker
2024-07-17 21:43:05 +09:00
Author: https://github.com/ADKaster Commit: https://github.com/SerenityOS/serenity/commit/f8ea9cd64e0 Pull-request: https://github.com/SerenityOS/serenity/pull/11587
3 changed files with 1 additions and 5 deletions
|
@ -200,7 +200,6 @@ elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang$")
|
||||||
add_compile_options(-Wno-implicit-const-int-float-conversion)
|
add_compile_options(-Wno-implicit-const-int-float-conversion)
|
||||||
add_compile_options(-Wno-null-pointer-subtraction)
|
add_compile_options(-Wno-null-pointer-subtraction)
|
||||||
add_compile_options(-Wno-unneeded-internal-declaration)
|
add_compile_options(-Wno-unneeded-internal-declaration)
|
||||||
add_compile_options(-Wno-unused-but-set-variable)
|
|
||||||
add_compile_options(-Wno-unused-const-variable)
|
add_compile_options(-Wno-unused-const-variable)
|
||||||
add_compile_options(-Wno-unused-function)
|
add_compile_options(-Wno-unused-function)
|
||||||
add_compile_options(-Wno-unused-private-field)
|
add_compile_options(-Wno-unused-private-field)
|
||||||
|
|
|
@ -334,7 +334,6 @@ void ProcessModel::update()
|
||||||
auto all_processes = Core::ProcessStatisticsReader::get_all(m_proc_all);
|
auto all_processes = Core::ProcessStatisticsReader::get_all(m_proc_all);
|
||||||
|
|
||||||
HashTable<int> live_tids;
|
HashTable<int> live_tids;
|
||||||
u64 sum_time_scheduled = 0, sum_time_scheduled_kernel = 0;
|
|
||||||
u64 total_time_scheduled_diff = 0;
|
u64 total_time_scheduled_diff = 0;
|
||||||
if (all_processes.has_value()) {
|
if (all_processes.has_value()) {
|
||||||
if (m_has_total_scheduled_time)
|
if (m_has_total_scheduled_time)
|
||||||
|
@ -382,8 +381,6 @@ void ProcessModel::update()
|
||||||
state.cpu_percent = 0;
|
state.cpu_percent = 0;
|
||||||
state.priority = thread.priority;
|
state.priority = thread.priority;
|
||||||
state.state = thread.state;
|
state.state = thread.state;
|
||||||
sum_time_scheduled += thread.time_user + thread.time_kernel;
|
|
||||||
sum_time_scheduled_kernel += thread.time_kernel;
|
|
||||||
auto& thread_data = *m_threads.ensure(thread.tid, [] { return make<Thread>(); });
|
auto& thread_data = *m_threads.ensure(thread.tid, [] { return make<Thread>(); });
|
||||||
thread_data.previous_state = move(thread_data.current_state);
|
thread_data.previous_state = move(thread_data.current_state);
|
||||||
thread_data.current_state = move(state);
|
thread_data.current_state = move(state);
|
||||||
|
|
|
@ -147,7 +147,7 @@ Optional<Result> benchmark(const String& filename, int file_size, int block_size
|
||||||
auto timer = Core::ElapsedTimer::start_new();
|
auto timer = Core::ElapsedTimer::start_new();
|
||||||
|
|
||||||
ssize_t total_written = 0;
|
ssize_t total_written = 0;
|
||||||
for (ssize_t j = 0; j < file_size; j += block_size) {
|
while (total_written < file_size) {
|
||||||
auto nwritten = write(fd, buffer.data(), block_size);
|
auto nwritten = write(fd, buffer.data(), block_size);
|
||||||
if (nwritten < 0) {
|
if (nwritten < 0) {
|
||||||
perror("write");
|
perror("write");
|
||||||
|
|
Loading…
Reference in a new issue