skas.h 500 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
  4. */
  5. #ifndef __SKAS_H
  6. #define __SKAS_H
  7. #include <sysdep/ptrace.h>
  8. extern int using_seccomp;
  9. extern void new_thread_handler(void);
  10. extern void handle_syscall(struct uml_pt_regs *regs);
  11. extern unsigned long current_stub_stack(void);
  12. extern struct mm_id *current_mm_id(void);
  13. extern void current_mm_sync(void);
  14. void initial_jmpbuf_lock(void);
  15. void initial_jmpbuf_unlock(void);
  16. #endif