ctags
ctags copied to clipboard
Target: Linux kernel
TODO items to help people read the source code of linux kernel.
- [x] introduce "section:" field to C parser (#3614)
- [x] expand cpreprocessor macros used in linker scripts (#3365)
- [x] expand cpreprocessor macros used in assembly language sources
- [ ] multi pass parsing (#2741)
- [x] skip
__ASSMEBLY__ifdef block (or run Asm index in the area). See the question at stackoverflow. (#3323 - [ ] add ctags-target-linux(7) man page ...
acpi_status
acpi_evaluate_object_typed(acpi_handle handle,
acpi_string pathname,
struct acpi_object_list *external_params,
struct acpi_buffer *return_buffer,
acpi_object_type return_type)
{
// ...
}
ACPI_EXPORT_SYMBOL(acpi_evaluate_object_typed)
acpi_status
acpi_evaluate_object(acpi_handle handle,
acpi_string pathname,
struct acpi_object_list *external_params,
struct acpi_buffer *return_buffer)
{
// ...
}
Though I know the reason, acpi_evaluate_object is not tagged.
I want to implement a heuristic to overcome this situation.