include/linux/unwind_deferred.h
Source file repositories/reference/linux-study-clean/include/linux/unwind_deferred.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/unwind_deferred.h- Extension
.h- Size
- 2161 bytes
- Lines
- 80
- 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.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/task_work.hlinux/unwind_user.hlinux/unwind_deferred_types.h
Detected Declarations
function unwind_reset_infofunction unwind_task_initfunction unwind_deferred_initfunction unwind_deferred_requestfunction unwind_deferred_cancel
Annotated Snippet
static inline void unwind_task_init(struct task_struct *task) {}
static inline void unwind_task_free(struct task_struct *task) {}
static inline int unwind_user_faultable(struct unwind_stacktrace *trace)
{ return -ENOSYS; }
static inline int
unwind_deferred_init(struct unwind_work *work, unwind_callback_t func)
{ return -ENOSYS; }
static inline int
unwind_deferred_request(struct unwind_work *work, u64 *timestamp)
{ return -ENOSYS; }
static inline void unwind_deferred_cancel(struct unwind_work *work) {}
static inline void unwind_deferred_task_exit(struct task_struct *task) {}
static inline void unwind_reset_info(void) {}
#endif /* !CONFIG_UNWIND_USER */
#endif /* _LINUX_UNWIND_USER_DEFERRED_H */
Annotation
- Immediate include surface: `linux/task_work.h`, `linux/unwind_user.h`, `linux/unwind_deferred_types.h`.
- Detected declarations: `function unwind_reset_info`, `function unwind_task_init`, `function unwind_deferred_init`, `function unwind_deferred_request`, `function unwind_deferred_cancel`.
- Atlas domain: Core OS / Core Kernel Interface.
- Implementation status: source implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.