Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/um/include/shared/skas/skas.h
26495 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
4
*/
5
6
#ifndef __SKAS_H
7
#define __SKAS_H
8
9
#include <sysdep/ptrace.h>
10
11
extern int using_seccomp;
12
13
extern void new_thread_handler(void);
14
extern void handle_syscall(struct uml_pt_regs *regs);
15
extern unsigned long current_stub_stack(void);
16
extern struct mm_id *current_mm_id(void);
17
extern void current_mm_sync(void);
18
19
#endif
20
21