Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 218684
Collapse All | Expand All

(-)libc/sysdeps/linux/mips/pipe.S (-2 / +2 lines)
Lines 8-16 Link Here
8
/*see uClibc's sh/pipe.c and glibc-2.2.4's mips/pipe.S */
8
/*see uClibc's sh/pipe.c and glibc-2.2.4's mips/pipe.S */
9
9
10
#include <features.h>
10
#include <features.h>
11
#include <asm/asm.h>
11
#include <sys/asm.h>
12
#include <asm/unistd.h>
12
#include <asm/unistd.h>
13
#include <asm/regdef.h>
13
#include <sys/regdef.h>
14
14
15
	.globl	pipe
15
	.globl	pipe
16
	.ent	pipe, 0
16
	.ent	pipe, 0
(-)libc/sysdeps/linux/mips/clone.S (-1 / +1 lines)
Lines 25-31 Link Here
25
#include <sys/regdef.h>
25
#include <sys/regdef.h>
26
#define _ERRNO_H	1
26
#define _ERRNO_H	1
27
#include <bits/errno.h>
27
#include <bits/errno.h>
28
#include <asm/asm.h>
28
#include <sys/asm.h>
29
29
30
/* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg) */
30
/* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg) */
31
31
(-)libc/sysdeps/linux/mips/syscall.S (-2 / +2 lines)
Lines 17-24 Link Here
17
   02111-1307 USA.  */
17
   02111-1307 USA.  */
18
18
19
#include <features.h>
19
#include <features.h>
20
#include <asm/asm.h>
20
#include <sys/asm.h>
21
#include <asm/regdef.h>
21
#include <sys/regdef.h>
22
22
23
#ifdef __PIC__
23
#ifdef __PIC__
24
	.option pic2
24
	.option pic2
(-)libc/sysdeps/linux/mips/sys/sysmips.h (-2 / +10 lines)
Lines 22-30 Link Here
22
#include <features.h>
22
#include <features.h>
23
23
24
/*
24
/*
25
 * Get the kernel definition for sysmips(2)
25
 * Commands for the sysmips(2) call
26
 *
27
 * sysmips(2) is deprecated - though some existing software uses it.
28
 * We only support the following commands.  Sysmips exists for compatibility
29
 * purposes only so new software should avoid it.
26
 */
30
 */
27
#include <asm/sysmips.h>
31
#define SETNAME                   1	/* set hostname                  */
32
#define FLUSH_CACHE		   3	/* writeback and invalidate caches */
33
#define MIPS_FIXADE               7	/* control address error fixing  */
34
#define MIPS_RDNVRAM              10	/* read NVRAM			 */
35
#define MIPS_ATOMIC_SET		2001	/* atomically set variable       */
28
36
29
__BEGIN_DECLS
37
__BEGIN_DECLS
30
38

Return to bug 218684