mirror of git://sourceware.org/git/glibc.git
(ucontext): Rename field uc_links to
uc_link which is the right name according to Unix98.
This commit is contained in:
parent
963048adc5
commit
df019d9428
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1998 Free Software Foundation, Inc.
|
/* Copyright (C) 1998, 1999 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
|
||||||
|
@ -85,7 +85,7 @@ typedef struct
|
||||||
typedef struct ucontext
|
typedef struct ucontext
|
||||||
{
|
{
|
||||||
unsigned long int uc_flags;
|
unsigned long int uc_flags;
|
||||||
struct ucontext *uc_links;
|
struct ucontext *uc_link;
|
||||||
__sigset_t uc_sigmask;
|
__sigset_t uc_sigmask;
|
||||||
stack_t uc_stack;
|
stack_t uc_stack;
|
||||||
mcontext_t uc_mcontext;
|
mcontext_t uc_mcontext;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1997 Free Software Foundation, Inc.
|
/* Copyright (C) 1997, 1999 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
|
||||||
|
@ -98,7 +98,7 @@ typedef struct
|
||||||
typedef struct ucontext
|
typedef struct ucontext
|
||||||
{
|
{
|
||||||
unsigned long int uc_flags;
|
unsigned long int uc_flags;
|
||||||
struct ucontext *uc_links;
|
struct ucontext *uc_link;
|
||||||
__sigset_t uc_sigmask;
|
__sigset_t uc_sigmask;
|
||||||
stack_t uc_stack;
|
stack_t uc_stack;
|
||||||
mcontext_t uc_mcontext;
|
mcontext_t uc_mcontext;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1998 Free Software Foundation, Inc.
|
/* Copyright (C) 1998, 1999 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
|
||||||
|
@ -134,7 +134,7 @@ typedef struct
|
||||||
typedef struct ucontext
|
typedef struct ucontext
|
||||||
{
|
{
|
||||||
unsigned long int uc_flags;
|
unsigned long int uc_flags;
|
||||||
struct ucontext *uc_links;
|
struct ucontext *uc_link;
|
||||||
__sigset_t uc_sigmask;
|
__sigset_t uc_sigmask;
|
||||||
stack_t uc_stack;
|
stack_t uc_stack;
|
||||||
mcontext_t uc_mcontext;
|
mcontext_t uc_mcontext;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* Copyright (C) 1998 Free Software Foundation, Inc.
|
/* Copyright (C) 1998, 1999 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
|
||||||
|
@ -31,7 +31,7 @@ typedef struct sigcontext mcontext_t;
|
||||||
typedef struct ucontext
|
typedef struct ucontext
|
||||||
{
|
{
|
||||||
unsigned long int uc_flags;
|
unsigned long int uc_flags;
|
||||||
struct ucontext *uc_links;
|
struct ucontext *uc_link;
|
||||||
unsigned long __uc_osf_sigmask;
|
unsigned long __uc_osf_sigmask;
|
||||||
stack_t uc_stack;
|
stack_t uc_stack;
|
||||||
mcontext_t uc_mcontext;
|
mcontext_t uc_mcontext;
|
||||||
|
|
Loading…
Reference in New Issue