Your ROOT_URL in app.ini is https://gitea.jennalody.de/ but you are visiting https://gitea.jenslody.de/jenna/kernel_samsung_sm7125/src/commit/321ab6a5fab812658626aee6bce2617f8cfb3a55/include/asm-arm/ucontext.h
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#ifndef _ASMARM_UCONTEXT_H
|
|
#define _ASMARM_UCONTEXT_H
|
|
|
|
struct ucontext {
|
|
unsigned long uc_flags;
|
|
struct ucontext *uc_link;
|
|
stack_t uc_stack;
|
|
struct sigcontext uc_mcontext;
|
|
sigset_t uc_sigmask; /* mask last for extensibility */
|
|
};
|
|
|
|
#endif /* !_ASMARM_UCONTEXT_H */
|
|
|