Add definitions for PT_LOPROC and PT_HIPROC.

Submitted by:	Kapil Chowksey <kchowksey@hss.hns.com>
This commit is contained in:
John Polstra 1998-07-07 23:32:57 +00:00
parent f7bebafb62
commit 5f9f3cb473
2 changed files with 8 additions and 2 deletions

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: elf32.h,v 1.1 1997/05/21 23:07:30 jdp Exp $
* $Id: elf32.h,v 1.2 1997/08/30 18:58:31 peter Exp $
*/
#ifndef _SYS_ELF32_H_
@ -196,6 +196,9 @@ typedef struct {
#define PT_COUNT 7 /* Number of defined p_type values. */
#define PT_LOPROC 0x70000000 /* First processor-specific type. */
#define PT_HIPROC 0x7fffffff /* Last processor-specific type. */
/* Values for p_flags. */
#define PF_X 0x1 /* Executable. */
#define PF_W 0x2 /* Writable. */

View File

@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: elf64.h,v 1.1 1998/06/10 10:57:26 dfr Exp $
* $Id: elf64.h,v 1.2 1998/06/14 13:24:09 dfr Exp $
*/
#ifndef _SYS_ELF64_H_
@ -198,6 +198,9 @@ typedef struct {
#define PT_COUNT 7 /* Number of defined p_type values. */
#define PT_LOPROC 0x70000000 /* First processor-specific type. */
#define PT_HIPROC 0x7fffffff /* Last processor-specific type. */
/* Values for p_flags. */
#define PF_X 0x1 /* Executable. */
#define PF_W 0x2 /* Writable. */