Loading...
1/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#ifndef _ASM_ARC_SYSCALLS_H
10#define _ASM_ARC_SYSCALLS_H 1
11
12#include <linux/compiler.h>
13#include <linux/linkage.h>
14#include <linux/types.h>
15
16int sys_clone_wrapper(int, int, int, int, int);
17int sys_cacheflush(uint32_t, uint32_t uint32_t);
18int sys_arc_settls(void *);
19int sys_arc_gettls(void);
20
21#include <asm-generic/syscalls.h>
22
23#endif
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
4 */
5
6#ifndef _ASM_ARC_SYSCALLS_H
7#define _ASM_ARC_SYSCALLS_H 1
8
9#include <linux/compiler.h>
10#include <linux/linkage.h>
11#include <linux/types.h>
12
13int sys_clone_wrapper(int, int, int, int, int);
14int sys_clone3_wrapper(void *, size_t);
15int sys_cacheflush(uint32_t, uint32_t uint32_t);
16int sys_arc_settls(void *);
17int sys_arc_gettls(void);
18int sys_arc_usr_cmpxchg(int *, int, int);
19
20#include <asm-generic/syscalls.h>
21
22#endif