mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Update.
* sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Add missing ints.
This commit is contained in:
@ -1,5 +1,7 @@
|
|||||||
2000-02-01 Andreas Jaeger <aj@suse.de>
|
2000-02-01 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/mips/sys/ucontext.h: Add missing ints.
|
||||||
|
|
||||||
* sysdeps/mips/elf/start.S: Rewritten for __libc_start_main.
|
* sysdeps/mips/elf/start.S: Rewritten for __libc_start_main.
|
||||||
|
|
||||||
2000-01-30 Ulrich Drepper <drepper@redhat.com>
|
2000-01-30 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
|
/* Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
|
|
||||||
/* Type for general register. */
|
/* Type for general register. */
|
||||||
typedef unsigned long greg_t;
|
typedef unsigned long int greg_t;
|
||||||
|
|
||||||
/* Number of general registers. */
|
/* Number of general registers. */
|
||||||
#define NGREG 37
|
#define NGREG 37
|
||||||
@ -67,7 +67,7 @@ typedef struct
|
|||||||
/* Userlevel context. */
|
/* Userlevel context. */
|
||||||
typedef struct ucontext
|
typedef struct ucontext
|
||||||
{
|
{
|
||||||
unsigned long uc_flags;
|
unsigned long int uc_flags;
|
||||||
struct ucontext *uc_link;
|
struct ucontext *uc_link;
|
||||||
stack_t uc_stack;
|
stack_t uc_stack;
|
||||||
mcontext_t uc_mcontext;
|
mcontext_t uc_mcontext;
|
||||||
|
Reference in New Issue
Block a user