mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 19:32:06 -05:00
fe668db999
Warnings fixed: * SC2086: Double quote to prevent globbing and word splitting. * SC2006: Use $(...) notation instead of legacy backticked `...` * SC2039: In POSIX sh, echo flags are undefined * SC2209: Use var=$(command) to assign output (or quote to assign string) * SC2164: Use 'cd ... || exit' or 'cd ... || return' in case cd fails * SC2166: Prefer [ p ] && [ q ] as [ p -a q ] is not well defined. * SC2034: i appears unused. Verify use (or export if used externally) * SC2046: Quote this to prevent word splitting. * SC2236: Use -z instead of ! -n. There are still a lot of warnings in Kernel/run about: - SC2086: Double quote to prevent globbing and word splitting. However, splitting on space is intentional in this case, and not trivial to change. Therefore ignore the warning for now - but we should fix this in the future. |
||
---|---|---|
.. | ||
ACPI | ||
Arch/i386 | ||
Devices | ||
FileSystem | ||
Heap | ||
Net | ||
PCI | ||
TTY | ||
VM | ||
.bochsrc | ||
.gitignore | ||
Assertions.h | ||
build-image-grub.sh | ||
build-image-qemu.sh | ||
build-root-filesystem.sh | ||
CMOS.cpp | ||
CMOS.h | ||
debug-kernel | ||
DoubleBuffer.cpp | ||
DoubleBuffer.h | ||
FB.h | ||
grub-ebr.cfg | ||
grub-gpt.cfg | ||
grub-mbr.cfg | ||
init.cpp | ||
InterruptHandler.cpp | ||
InterruptHandler.h | ||
IRQHandler.cpp | ||
IRQHandler.h | ||
KBuffer.h | ||
KBufferBuilder.cpp | ||
KBufferBuilder.h | ||
KernelInfoPage.h | ||
KeyCode.h | ||
KParams.cpp | ||
KParams.h | ||
KResult.h | ||
KSyms.cpp | ||
KSyms.h | ||
linker.ld | ||
Lock.cpp | ||
Lock.h | ||
makeall.sh | ||
Makefile | ||
mkmap.sh | ||
Module.h | ||
MousePacket.h | ||
Multiboot.h | ||
PerformanceEventBuffer.cpp | ||
PerformanceEventBuffer.h | ||
Process.cpp | ||
Process.h | ||
ProcessTracer.cpp | ||
ProcessTracer.h | ||
Profiling.cpp | ||
Profiling.h | ||
Random.cpp | ||
Random.h | ||
RTC.cpp | ||
RTC.h | ||
run | ||
Scheduler.cpp | ||
Scheduler.h | ||
SharedBuffer.cpp | ||
SharedBuffer.h | ||
SharedInterruptHandler.cpp | ||
SharedInterruptHandler.h | ||
sync.sh | ||
Syscall.cpp | ||
Syscall.h | ||
TestModule.cpp | ||
Thread.cpp | ||
Thread.h | ||
TimerQueue.cpp | ||
TimerQueue.h | ||
UnixTypes.h | ||
WaitQueue.cpp | ||
WaitQueue.h |