mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Make it possible to overwrite debug macros locally.
Leaking macros across headers is a terrible thing, but I can't think of a better way of achieving this. - We need some way of modifying debug macros from CMake to implement ENABLE_ALL_THE_DEBUG_MACROS. - We need some way of modifying debug macros in specific source files because otherwise we need to rebuild too many files. This was done using the following script: sed -i -E 's/#cmakedefine01 ([A-Z0-9_]+)/#ifndef \1\n\0\n#endif\n/' AK/Debug.h.in sed -i -E 's/#cmakedefine01 ([A-Z0-9_]+)/#ifndef \1\n\0\n#endif\n/' Kernel/Debug.h.in
This commit is contained in:
parent
91db36064f
commit
6a00e338a8
Notes:
sideshowbarker
2024-07-18 22:35:59 +09:00
Author: https://github.com/asynts Commit: https://github.com/SerenityOS/serenity/commit/6a00e338a87 Pull-request: https://github.com/SerenityOS/serenity/pull/5183
2 changed files with 493 additions and 0 deletions
275
AK/Debug.h.in
275
AK/Debug.h.in
|
@ -26,95 +26,370 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#ifndef AUTOCOMPLETE_DEBUG
|
||||
#cmakedefine01 AUTOCOMPLETE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef AWAVLOADER_DEBUG
|
||||
#cmakedefine01 AWAVLOADER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef BMP_DEBUG
|
||||
#cmakedefine01 BMP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef CACHE_DEBUG
|
||||
#cmakedefine01 CACHE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef CALLBACK_MACHINE_DEBUG
|
||||
#cmakedefine01 CALLBACK_MACHINE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef CHTTPJOB_DEBUG
|
||||
#cmakedefine01 CHTTPJOB_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef CNETWORKJOB_DEBUG
|
||||
#cmakedefine01 CNETWORKJOB_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef COMPOSE_DEBUG
|
||||
#cmakedefine01 COMPOSE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef COPY_DEBUG
|
||||
#cmakedefine01 COPY_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef CPP_LANGUAGE_SERVER_DEBUG
|
||||
#cmakedefine01 CPP_LANGUAGE_SERVER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef CRYPTO_DEBUG
|
||||
#cmakedefine01 CRYPTO_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef CSOCKET_DEBUG
|
||||
#cmakedefine01 CSOCKET_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef CURSOR_TOOL_DEBUG
|
||||
#cmakedefine01 CURSOR_TOOL_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef DEFERRED_INVOKE_DEBUG
|
||||
#cmakedefine01 DEFERRED_INVOKE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef DHCPV4CLIENT_DEBUG
|
||||
#cmakedefine01 DHCPV4CLIENT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef DHCPV4_DEBUG
|
||||
#cmakedefine01 DHCPV4_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef DIFF_DEBUG
|
||||
#cmakedefine01 DIFF_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef DISASM_DUMP_DEBUG
|
||||
#cmakedefine01 DISASM_DUMP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef DOUBLECLICK_DEBUG
|
||||
#cmakedefine01 DOUBLECLICK_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef DWARF_DEBUG
|
||||
#cmakedefine01 DWARF_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef DYNAMIC_LOAD_DEBUG
|
||||
#cmakedefine01 DYNAMIC_LOAD_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef EDITOR_DEBUG
|
||||
#cmakedefine01 EDITOR_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef ELF_IMAGE_DEBUG
|
||||
#cmakedefine01 ELF_IMAGE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef EMOJI_DEBUG
|
||||
#cmakedefine01 EMOJI_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef EVENT_DEBUG
|
||||
#cmakedefine01 EVENT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef EVENTLOOP_DEBUG
|
||||
#cmakedefine01 EVENTLOOP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef FILE_CONTENT_DEBUG
|
||||
#cmakedefine01 FILE_CONTENT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef FILL_PATH_DEBUG
|
||||
#cmakedefine01 FILL_PATH_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef GEMINI_DEBUG
|
||||
#cmakedefine01 GEMINI_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef GEMINIJOB_DEBUG
|
||||
#cmakedefine01 GEMINIJOB_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef GENERATE_DEBUG
|
||||
#cmakedefine01 GENERATE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef GHASH_PROCESS_DEBUG
|
||||
#cmakedefine01 GHASH_PROCESS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef GIF_DEBUG
|
||||
#cmakedefine01 GIF_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef GLOBAL_DTORS_DEBUG
|
||||
#cmakedefine01 GLOBAL_DTORS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef GMENU_DEBUG
|
||||
#cmakedefine01 GMENU_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef GZIP_DEBUG
|
||||
#cmakedefine01 GZIP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef HEAP_DEBUG
|
||||
#cmakedefine01 HEAP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef HEX_DEBUG
|
||||
#cmakedefine01 HEX_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef HIGHLIGHT_FOCUSED_FRAME_DEBUG
|
||||
#cmakedefine01 HIGHLIGHT_FOCUSED_FRAME_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef HTML_SCRIPT_DEBUG
|
||||
#cmakedefine01 HTML_SCRIPT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef HTTPSJOB_DEBUG
|
||||
#cmakedefine01 HTTPSJOB_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef HUNKS_DEBUG
|
||||
#cmakedefine01 HUNKS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef ICO_DEBUG
|
||||
#cmakedefine01 ICO_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef IMAGE_DECODER_DEBUG
|
||||
#cmakedefine01 IMAGE_DECODER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef IMAGE_LOADER_DEBUG
|
||||
#cmakedefine01 IMAGE_LOADER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef IRC_DEBUG
|
||||
#cmakedefine01 IRC_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef ITEM_RECTS_DEBUG
|
||||
#cmakedefine01 ITEM_RECTS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef JOB_DEBUG
|
||||
#cmakedefine01 JOB_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef JPG_DEBUG
|
||||
#cmakedefine01 JPG_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef KEYBOARD_SHORTCUTS_DEBUG
|
||||
#cmakedefine01 KEYBOARD_SHORTCUTS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef LEXER_DEBUG
|
||||
#cmakedefine01 LEXER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef LOG_DEBUG
|
||||
#cmakedefine01 LOG_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef LOOKUPSERVER_DEBUG
|
||||
#cmakedefine01 LOOKUPSERVER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef MALLOC_DEBUG
|
||||
#cmakedefine01 MALLOC_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef MARKDOWN_DEBUG
|
||||
#cmakedefine01 MARKDOWN_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef MEMORY_DEBUG
|
||||
#cmakedefine01 MEMORY_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef MENU_DEBUG
|
||||
#cmakedefine01 MENU_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef MENUS_DEBUG
|
||||
#cmakedefine01 MENUS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef MINIMIZE_ANIMATION_DEBUG
|
||||
#cmakedefine01 MINIMIZE_ANIMATION_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef MOVE_DEBUG
|
||||
#cmakedefine01 MOVE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef NT_DEBUG
|
||||
#cmakedefine01 NT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef OBJECT_DEBUG
|
||||
#cmakedefine01 OBJECT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef OCCLUSIONS_DEBUG
|
||||
#cmakedefine01 OCCLUSIONS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PARSER_DEBUG
|
||||
#cmakedefine01 PARSER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PATH_DEBUG
|
||||
#cmakedefine01 PATH_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PNG_DEBUG
|
||||
#cmakedefine01 PNG_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PORTABLE_IMAGE_LOADER_DEBUG
|
||||
#cmakedefine01 PORTABLE_IMAGE_LOADER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PTHREAD_DEBUG
|
||||
#cmakedefine01 PTHREAD_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef REACHABLE_DEBUG
|
||||
#cmakedefine01 REACHABLE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef REGEX_DEBUG
|
||||
#cmakedefine01 REGEX_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef RESIZE_DEBUG
|
||||
#cmakedefine01 RESIZE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef RESOURCE_DEBUG
|
||||
#cmakedefine01 RESOURCE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SAFE_SYSCALL_DEBUG
|
||||
#cmakedefine01 SAFE_SYSCALL_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SERVICE_DEBUG
|
||||
#cmakedefine01 SERVICE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SH_DEBUG
|
||||
#cmakedefine01 SH_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SH_LANGUAGE_SERVER_DEBUG
|
||||
#cmakedefine01 SH_LANGUAGE_SERVER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SPAM_DEBUG
|
||||
#cmakedefine01 SPAM_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef STRINGIMPL_DEBUG
|
||||
#cmakedefine01 STRINGIMPL_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SYNTAX_HIGHLIGHTING_DEBUG
|
||||
#cmakedefine01 SYNTAX_HIGHLIGHTING_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SYSTEM_MENU_DEBUG
|
||||
#cmakedefine01 SYSTEM_MENU_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SYSTEMSERVER_DEBUG
|
||||
#cmakedefine01 SYSTEMSERVER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef TERMCAP_DEBUG
|
||||
#cmakedefine01 TERMCAP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef TERMINAL_DEBUG
|
||||
#cmakedefine01 TERMINAL_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef TEXTEDITOR_DEBUG
|
||||
#cmakedefine01 TEXTEDITOR_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef TLS_DEBUG
|
||||
#cmakedefine01 TLS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef TOKENIZER_TRACE_DEBUG
|
||||
#cmakedefine01 TOKENIZER_TRACE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef UCI_DEBUG
|
||||
#cmakedefine01 UCI_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef UPDATE_COALESCING_DEBUG
|
||||
#cmakedefine01 UPDATE_COALESCING_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef WINDOWMANAGER_DEBUG
|
||||
#cmakedefine01 WINDOWMANAGER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef WRAPPER_GENERATOR_DEBUG
|
||||
#cmakedefine01 WRAPPER_GENERATOR_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef WSMESSAGELOOP_DEBUG
|
||||
#cmakedefine01 WSMESSAGELOOP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef WSSCREEN_DEBUG
|
||||
#cmakedefine01 WSSCREEN_DEBUG
|
||||
#endif
|
||||
|
|
|
@ -26,76 +26,294 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#ifndef ACPI_DEBUG
|
||||
#cmakedefine01 ACPI_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef APIC_DEBUG
|
||||
#cmakedefine01 APIC_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef APIC_SMP_DEBUG
|
||||
#cmakedefine01 APIC_SMP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef ARP_DEBUG
|
||||
#cmakedefine01 ARP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef BBFS_DEBUG
|
||||
#cmakedefine01 BBFS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef BXVGA_DEBUG
|
||||
#cmakedefine01 BXVGA_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef COMMIT_DEBUG
|
||||
#cmakedefine01 COMMIT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef CONTEXT_SWITCH_DEBUG
|
||||
#cmakedefine01 CONTEXT_SWITCH_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef CONTIGUOUS_VMOBJECT_DEBUG
|
||||
#cmakedefine01 CONTIGUOUS_VMOBJECT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef E1000_DEBUG
|
||||
#cmakedefine01 E1000_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef ETHERNET_DEBUG
|
||||
#cmakedefine01 ETHERNET_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef ETHERNET_VERY_DEBUG
|
||||
#cmakedefine01 ETHERNET_VERY_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef EXEC_DEBUG
|
||||
#cmakedefine01 EXEC_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef EXT2_DEBUG
|
||||
#cmakedefine01 EXT2_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef EXT2_VERY_DEBUG
|
||||
#cmakedefine01 EXT2_VERY_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef FIFO_DEBUG
|
||||
#cmakedefine01 FIFO_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef FILEDESCRIPTION_DEBUG
|
||||
#cmakedefine01 FILEDESCRIPTION_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef FORK_DEBUG
|
||||
#cmakedefine01 FORK_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef FUTEX_DEBUG
|
||||
#cmakedefine01 FUTEX_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef FUTEXQUEUE_DEBUG
|
||||
#cmakedefine01 FUTEXQUEUE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef GPT_DEBUG
|
||||
#cmakedefine01 GPT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef HPET_COMPARATOR_DEBUG
|
||||
#cmakedefine01 HPET_COMPARATOR_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef HPET_DEBUG
|
||||
#cmakedefine01 HPET_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef ICMP_DEBUG
|
||||
#cmakedefine01 ICMP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef INTERRUPT_DEBUG
|
||||
#cmakedefine01 INTERRUPT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef IOAPIC_DEBUG
|
||||
#cmakedefine01 IOAPIC_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef IO_DEBUG
|
||||
#cmakedefine01 IO_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef IPV4_DEBUG
|
||||
#cmakedefine01 IPV4_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef IPV4_SOCKET_DEBUG
|
||||
#cmakedefine01 IPV4_SOCKET_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef IRQ_DEBUG
|
||||
#cmakedefine01 IRQ_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef KEYBOARD_DEBUG
|
||||
#cmakedefine01 KEYBOARD_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef KMALLOC_DEBUG
|
||||
#cmakedefine01 KMALLOC_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef LOCAL_SOCKET_DEBUG
|
||||
#cmakedefine01 LOCAL_SOCKET_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef LOCK_DEBUG
|
||||
#cmakedefine01 LOCK_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef LOCK_RESTORE_DEBUG
|
||||
#cmakedefine01 LOCK_RESTORE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef LOCK_TRACE_DEBUG
|
||||
#cmakedefine01 LOCK_TRACE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef MASTERPTY_DEBUG
|
||||
#cmakedefine01 MASTERPTY_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef MBR_DEBUG
|
||||
#cmakedefine01 MBR_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef MULTIPROCESSOR_DEBUG
|
||||
#cmakedefine01 MULTIPROCESSOR_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef NETWORK_TASK_DEBUG
|
||||
#cmakedefine01 NETWORK_TASK_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef OFFD_DEBUG
|
||||
#cmakedefine01 OFFD_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PAGE_FAULT_DEBUG
|
||||
#cmakedefine01 PAGE_FAULT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PATA_DEBUG
|
||||
#cmakedefine01 PATA_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PCI_DEBUG
|
||||
#cmakedefine01 PCI_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef POLL_SELECT_DEBUG
|
||||
#cmakedefine01 POLL_SELECT_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PROCESS_DEBUG
|
||||
#cmakedefine01 PROCESS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PROCFS_DEBUG
|
||||
#cmakedefine01 PROCFS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PS2MOUSE_DEBUG
|
||||
#cmakedefine01 PS2MOUSE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef PTMX_DEBUG
|
||||
#cmakedefine01 PTMX_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef ROUTING_DEBUG
|
||||
#cmakedefine01 ROUTING_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef RTL8139_DEBUG
|
||||
#cmakedefine01 RTL8139_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SB16_DEBUG
|
||||
#cmakedefine01 SB16_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SCHEDULER_DEBUG
|
||||
#cmakedefine01 SCHEDULER_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SCHEDULER_RUNNABLE_DEBUG
|
||||
#cmakedefine01 SCHEDULER_RUNNABLE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SIGNAL_DEBUG
|
||||
#cmakedefine01 SIGNAL_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SLAVEPTY_DEBUG
|
||||
#cmakedefine01 SLAVEPTY_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SMP_DEBUG
|
||||
#cmakedefine01 SMP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef SOCKET_DEBUG
|
||||
#cmakedefine01 SOCKET_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef STORAGE_DEVICE_DEBUG
|
||||
#cmakedefine01 STORAGE_DEVICE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef TCP_DEBUG
|
||||
#cmakedefine01 TCP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef TCP_SOCKET_DEBUG
|
||||
#cmakedefine01 TCP_SOCKET_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef THREAD_DEBUG
|
||||
#cmakedefine01 THREAD_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef TTY_DEBUG
|
||||
#cmakedefine01 TTY_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef UDP_DEBUG
|
||||
#cmakedefine01 UDP_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef UHCI_DEBUG
|
||||
#cmakedefine01 UHCI_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef UHCI_VERBOSE_DEBUG
|
||||
#cmakedefine01 UHCI_VERBOSE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef VFS_DEBUG
|
||||
#cmakedefine01 VFS_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef VMWARE_BACKDOOR_DEBUG
|
||||
#cmakedefine01 VMWARE_BACKDOOR_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef VOLATILE_PAGE_RANGES_DEBUG
|
||||
#cmakedefine01 VOLATILE_PAGE_RANGES_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef VRA_DEBUG
|
||||
#cmakedefine01 VRA_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef WAITBLOCK_DEBUG
|
||||
#cmakedefine01 WAITBLOCK_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef WAITQUEUE_DEBUG
|
||||
#cmakedefine01 WAITQUEUE_DEBUG
|
||||
#endif
|
||||
|
||||
#ifndef KMALLOC_DEBUG_LARGE_ALLOCATIONS
|
||||
#cmakedefine01 KMALLOC_DEBUG_LARGE_ALLOCATIONS
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue