Skip to content

Commit d5ce047

Browse files
committed
i#7796 doxygen: Fix unresolved link requests
Fixes warnings (treated as errors): ``` warning: explicit link request to 'func_trace_t::TRACE_FUNC_ID_SYSCALL_BASE' could not be resolved ``` By fully qualifying `func_trace_t`. Related issue in the doxygen repo: doxygen/doxygen#10713 Issue #7796
1 parent 753834b commit d5ce047

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clients/drcachesim/common/trace_entry.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ typedef enum {
356356
* This marker is also used to record parameter values for certain system calls such
357357
* as for #OFFLINE_FILE_TYPE_BLOCKING_SYSCALLS or -record_syscall. These use
358358
* large identifiers equal to
359-
* #func_trace_t::TRACE_FUNC_ID_SYSCALL_BASE plus the system
359+
* #dynamorio::drmemtrace::func_trace_t::TRACE_FUNC_ID_SYSCALL_BASE plus the system
360360
* call number (for 32-bit marker values just the bottom 16 bits of the system call
361361
* number are added to the base). These identifiers are not stored in the function
362362
* list file (drmemtrace_get_funclist_path()). The system call number used is the
@@ -1053,9 +1053,9 @@ typedef enum {
10531053
* return values for kernel locks (SYS_futex on Linux) using the function tracing
10541054
* markers #TRACE_MARKER_TYPE_FUNC_ID, #TRACE_MARKER_TYPE_FUNC_ARG, and
10551055
* #TRACE_MARKER_TYPE_FUNC_RETVAL with an identifier equal to
1056-
* #func_trace_t::TRACE_FUNC_ID_SYSCALL_BASE plus the system call number (or its
1057-
* bottom 16 bits for 32-bit marker values). These identifiers are not stored in the
1058-
* function list file (drmemtrace_get_funclist_path()).
1056+
* #dynamorio::drmemtrace::func_trace_t::TRACE_FUNC_ID_SYSCALL_BASE plus the system
1057+
* call number (or its bottom 16 bits for 32-bit marker values). These identifiers
1058+
* are not stored in the function list file (drmemtrace_get_funclist_path()).
10591059
*
10601060
* The #TRACE_MARKER_TYPE_FUNC_RETVAL for system calls is
10611061
* either 0 (failure) or 1 (success).

0 commit comments

Comments
 (0)