mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-09-10 04:37:37 -04:00
Fix it
This commit is contained in:
parent
c11eda2cc1
commit
a24357bab6
@ -17,7 +17,7 @@ export LDFLAGS+=" -L`pwd`/dummy_libs -Wl,--warn-unresolved-symbols"
|
|||||||
ln -s -f /usr/include/X11 $ANDROID_INCLUDE/
|
ln -s -f /usr/include/X11 $ANDROID_INCLUDE/
|
||||||
ln -s -f /usr/include/fontconfig $ANDROID_INCLUDE/
|
ln -s -f /usr/include/fontconfig $ANDROID_INCLUDE/
|
||||||
|
|
||||||
ln -s -f fixmissing/procfs.h $ANDROID_INCLUDE/sys/
|
ln -s -f fixmissing/procfs.h $ANDROID_INCLUDE/sys/procfs.h
|
||||||
|
|
||||||
# Create dummy libraries so we won't have to remove them in OpenJDK makefiles
|
# Create dummy libraries so we won't have to remove them in OpenJDK makefiles
|
||||||
mkdir -p dummy_libs
|
mkdir -p dummy_libs
|
||||||
|
@ -1,39 +1,111 @@
|
|||||||
/*
|
/* Copyright (C) 2001, 2004 Free Software Foundation, Inc.
|
||||||
* Copyright (C) 2014 The Android Open Source Project
|
This file is part of the GNU C Library.
|
||||||
* All rights reserved.
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
*
|
modify it under the terms of the GNU Lesser General Public
|
||||||
* Redistribution and use in source and binary forms, with or without
|
License as published by the Free Software Foundation; either
|
||||||
* modification, are permitted provided that the following conditions
|
version 2.1 of the License, or (at your option) any later version.
|
||||||
* are met:
|
The GNU C Library is distributed in the hope that it will be useful,
|
||||||
* * Redistributions of source code must retain the above copyright
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
* notice, this list of conditions and the following disclaimer.
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
* * Redistributions in binary form must reproduce the above copyright
|
Lesser General Public License for more details.
|
||||||
* notice, this list of conditions and the following disclaimer in
|
You should have received a copy of the GNU Lesser General Public
|
||||||
* the documentation and/or other materials provided with the
|
License along with the GNU C Library; if not, write to the Free
|
||||||
* distribution.
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||||
*
|
02111-1307 USA. */
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
||||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
||||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
||||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
||||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
||||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
||||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
||||||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
||||||
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
||||||
* SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef _SYS_PROCFS_H_
|
#ifndef _SYS_PROCFS_H
|
||||||
#define _SYS_PROCFS_H_
|
#define _SYS_PROCFS_H 1
|
||||||
|
|
||||||
|
#define USE_LOCAL_PROCFS 1
|
||||||
|
|
||||||
|
/* This is somewhat modelled after the file of the same name on SVR4
|
||||||
|
systems. It provides a definition of the core file format for ELF
|
||||||
|
used on Linux. It doesn't have anything to do with the /proc file
|
||||||
|
system, even though Linux has one.
|
||||||
|
Anyway, the whole purpose of this file is for GDB and GDB only.
|
||||||
|
Don't read too much into it. Don't use it for anything other than
|
||||||
|
GDB unless you know what you are doing. */
|
||||||
|
|
||||||
|
#include <features.h>
|
||||||
|
#include <sys/time.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/user.h>
|
||||||
|
|
||||||
|
#ifndef USE_LOCAL_PROCFS
|
||||||
|
# include <sys/procfs.h>
|
||||||
|
#else
|
||||||
# include <sys/cdefs.h>
|
# include <sys/cdefs.h>
|
||||||
# include <sys/ucontext.h>
|
# include <sys/ucontext.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
|
|
||||||
|
#ifdef USE_LOCAL_PROCFS
|
||||||
|
|
||||||
|
#if defined(__arm__)
|
||||||
|
typedef struct user_fpregs fpregset_t;
|
||||||
|
#elif defined(__aarch64__)
|
||||||
|
/*
|
||||||
|
struct user_regs_struct {
|
||||||
|
uint64_t regs[31];
|
||||||
|
uint64_t sp;
|
||||||
|
uint64_t pc;
|
||||||
|
uint64_t pstate;
|
||||||
|
};
|
||||||
|
*/
|
||||||
|
struct user_fpsimd_struct {
|
||||||
|
__uint128_t vregs[32];
|
||||||
|
uint32_t fpsr;
|
||||||
|
uint32_t fpcr;
|
||||||
|
};
|
||||||
|
typedef struct user_fpsimd_struct fpregset_t;
|
||||||
|
#elif defined(__i386__)
|
||||||
|
struct _libc_fpreg {
|
||||||
|
unsigned short significand[4];
|
||||||
|
unsigned short exponent;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _libc_fpstate {
|
||||||
|
unsigned long cw;
|
||||||
|
unsigned long sw;
|
||||||
|
unsigned long tag;
|
||||||
|
unsigned long ipoff;
|
||||||
|
unsigned long cssel;
|
||||||
|
unsigned long dataoff;
|
||||||
|
unsigned long datasel;
|
||||||
|
struct _libc_fpreg _st[8];
|
||||||
|
unsigned long status;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct _libc_fpstate* fpregset_t;
|
||||||
|
#elif defined(__x86_64__)
|
||||||
|
struct _libc_fpxreg {
|
||||||
|
unsigned short significand[4];
|
||||||
|
unsigned short exponent;
|
||||||
|
unsigned short padding[3];
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _libc_xmmreg {
|
||||||
|
uint32_t element[4];
|
||||||
|
};
|
||||||
|
|
||||||
|
struct _libc_fpstate {
|
||||||
|
uint16_t cwd;
|
||||||
|
uint16_t swd;
|
||||||
|
uint16_t ftw;
|
||||||
|
uint16_t fop;
|
||||||
|
uint64_t rip;
|
||||||
|
uint64_t rdp;
|
||||||
|
uint32_t mxcsr;
|
||||||
|
uint32_t mxcr_mask;
|
||||||
|
struct _libc_fpxreg _st[8];
|
||||||
|
struct _libc_xmmreg _xmm[16];
|
||||||
|
uint32_t padding[24];
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct _libc_fpstate* fpregset_t;
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef unsigned long elf_greg_t;
|
typedef unsigned long elf_greg_t;
|
||||||
typedef elf_greg_t elf_gregset_t[NGREG];
|
typedef elf_greg_t elf_gregset_t[NGREG];
|
||||||
|
|
||||||
@ -55,8 +127,81 @@ struct elf_siginfo {
|
|||||||
int si_errno;
|
int si_errno;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define ELF_PRARGSZ 80
|
#endif // USE_LOCAL_PROCFS
|
||||||
|
|
||||||
|
/* And the whole bunch of them. We could have used `struct
|
||||||
|
user_regs_struct' directly in the typedef, but tradition says that
|
||||||
|
the register set is an array, which does have some peculiar
|
||||||
|
semantics, so leave it that way. */
|
||||||
|
#define ELF_NGREG (sizeof (struct user_regs_struct) / sizeof(elf_greg_t))
|
||||||
|
|
||||||
|
#if !defined(__x86_64__) && !defined(__i386__)
|
||||||
|
/* Definitions to generate Intel SVR4-like core files. These mostly
|
||||||
|
have the same names as the SVR4 types with "elf_" tacked on the
|
||||||
|
front to prevent clashes with Linux definitions, and the typedef
|
||||||
|
forms have been avoided. This is mostly like the SVR4 structure,
|
||||||
|
but more Linuxy, with things that Linux does not support and which
|
||||||
|
GDB doesn't really use excluded. */
|
||||||
|
struct elf_prstatus
|
||||||
|
{
|
||||||
|
struct elf_siginfo pr_info; /* Info associated with signal. */
|
||||||
|
short int pr_cursig; /* Current signal. */
|
||||||
|
unsigned long int pr_sigpend; /* Set of pending signals. */
|
||||||
|
unsigned long int pr_sighold; /* Set of held signals. */
|
||||||
|
__pid_t pr_pid;
|
||||||
|
__pid_t pr_ppid;
|
||||||
|
__pid_t pr_pgrp;
|
||||||
|
__pid_t pr_sid;
|
||||||
|
struct timeval pr_utime; /* User time. */
|
||||||
|
struct timeval pr_stime; /* System time. */
|
||||||
|
struct timeval pr_cutime; /* Cumulative user time. */
|
||||||
|
struct timeval pr_cstime; /* Cumulative system time. */
|
||||||
|
elf_gregset_t pr_reg; /* GP registers. */
|
||||||
|
int pr_fpvalid; /* True if math copro being used. */
|
||||||
|
};
|
||||||
|
|
||||||
|
#define ELF_PRARGSZ (80) /* Number of chars for args. */
|
||||||
|
struct elf_prpsinfo
|
||||||
|
{
|
||||||
|
char pr_state; /* Numeric process state. */
|
||||||
|
char pr_sname; /* Char for pr_state. */
|
||||||
|
char pr_zomb; /* Zombie. */
|
||||||
|
char pr_nice; /* Nice val. */
|
||||||
|
unsigned long int pr_flag; /* Flags. */
|
||||||
|
#if __WORDSIZE == 32
|
||||||
|
unsigned short int pr_uid;
|
||||||
|
unsigned short int pr_gid;
|
||||||
|
#else
|
||||||
|
unsigned int pr_uid;
|
||||||
|
unsigned int pr_gid;
|
||||||
|
#endif
|
||||||
|
int pr_pid, pr_ppid, pr_pgrp, pr_sid;
|
||||||
|
/* Lots missing */
|
||||||
|
char pr_fname[16]; /* Filename of executable. */
|
||||||
|
char pr_psargs[ELF_PRARGSZ]; /* Initial part of arg list. */
|
||||||
|
};
|
||||||
|
|
||||||
|
/* The rest of this file provides the types for emulation of the
|
||||||
|
Solaris <proc_service.h> interfaces that should be implemented by
|
||||||
|
users of libthread_db. */
|
||||||
|
|
||||||
|
/* Addresses. */
|
||||||
|
typedef void *psaddr_t;
|
||||||
|
|
||||||
|
/* We don't have any differences between processes and threads,
|
||||||
|
therefore have only one PID type. */
|
||||||
|
typedef __pid_t lwpid_t;
|
||||||
|
|
||||||
|
/* Register sets. Linux has different names. */
|
||||||
|
typedef elf_gregset_t prgregset_t;
|
||||||
|
typedef elf_fpregset_t prfpregset_t;
|
||||||
|
|
||||||
|
#endif // !__x86_64__ && !__i386__
|
||||||
|
|
||||||
|
/* Process status and info. In the end we do provide typedefs for them. */
|
||||||
|
typedef struct elf_prstatus prstatus_t;
|
||||||
|
typedef struct elf_prpsinfo prpsinfo_t;
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
||||||
|
|
||||||
#endif
|
#endif /* sys/procfs.h */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user