include/linux/unwind_user_types.h

Source file repositories/reference/linux-study-clean/include/linux/unwind_user_types.h

File Facts

System
Linux kernel
Corpus path
include/linux/unwind_user_types.h
Extension
.h
Size
925 bytes
Lines
47
Domain
Core OS
Bucket
Core Kernel Interface
Inferred role
Core OS: implementation source
Status
source implementation candidate

Why This File Exists

Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.

Dependency Surface

Detected Declarations

Annotated Snippet

struct unwind_stacktrace {
	unsigned int	nr;
	unsigned long	*entries;
};

struct unwind_user_frame {
	s32 cfa_off;
	s32 ra_off;
	s32 fp_off;
	bool use_fp;
};

struct unwind_user_state {
	unsigned long				ip;
	unsigned long				sp;
	unsigned long				fp;
	unsigned int				ws;
	enum unwind_user_type			current_type;
	unsigned int				available_types;
	bool					topmost;
	bool					done;
};

#endif /* _LINUX_UNWIND_USER_TYPES_H */

Annotation

Implementation Notes