Fix note structure members types

This commit is contained in:
Nakamura, Yuuichi
2020-07-22 11:55:21 -05:00
committed by Xiang Xiao
parent e4b50c4ba0
commit 2b4d2cd4a3
2 changed files with 6 additions and 3 deletions
+3 -3
View File
@@ -239,14 +239,14 @@ struct note_spinlock_s
struct note_syscall_enter_s
{
struct note_common_s nsc_cmn; /* Common note parameters */
int nsc_nr; /* System call number */
uint8_t nsc_nr; /* System call number */
};
struct note_syscall_leave_s
{
struct note_common_s nsc_cmn; /* Common note parameters */
uintptr_t nsc_result; /* Result of the system call */
int nsc_nr; /* System call number */
uint8_t nsc_nr; /* System call number */
};
#endif /* CONFIG_SCHED_INSTRUMENTATION_SYSCALL */
@@ -256,7 +256,7 @@ struct note_syscall_leave_s
struct note_irqhandler_s
{
struct note_common_s nih_cmn; /* Common note parameters */
int nih_irq; /* IRQ number */
uint8_t nih_irq; /* IRQ number */
};
#endif /* CONFIG_SCHED_INSTRUMENTATION_IRQHANDLER */
#endif /* CONFIG_SCHED_INSTRUMENTATION_BUFFER */