mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-20 14:29:22 +00:00

This function has never been defined since its declaration was
introduced by commit 1da177e4c3
("Linux-2.6.12-rc2").
Signed-off-by: Tiwei Bie <tiwei.btw@antgroup.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
19 lines
436 B
C
19 lines
436 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
*/
|
|
|
|
#ifndef __SKAS_H
|
|
#define __SKAS_H
|
|
|
|
#include <sysdep/ptrace.h>
|
|
|
|
extern int userspace_pid[];
|
|
|
|
extern void new_thread_handler(void);
|
|
extern void handle_syscall(struct uml_pt_regs *regs);
|
|
extern unsigned long current_stub_stack(void);
|
|
extern struct mm_id *current_mm_id(void);
|
|
extern void current_mm_sync(void);
|
|
|
|
#endif
|