ctags icon indicating copy to clipboard operation
ctags copied to clipboard

Target: Linux kernel

Open masatake opened this issue 4 years ago • 2 comments

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 ...

masatake avatar Jan 07 '22 23:01 masatake

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.

masatake avatar Dec 17 '23 14:12 masatake