Skip to content

Commit

Permalink
Rename to NFPREG.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Mar 27, 2001
1 parent 12aeb30 commit 601ecd3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions sysdeps/sh/sys/ucontext.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
/* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand Down Expand Up @@ -27,10 +27,10 @@
typedef int greg_t;

/* Number of general registers. */
#define NGREG 16
#define NFPREG 16

/* Container for all general registers. */
typedef greg_t gregset_t[NGREG];
typedef greg_t gregset_t[NFPREG];

/* Number of each register is the `gregset_t' array. */
enum
Expand Down
10 changes: 5 additions & 5 deletions sysdeps/unix/sysv/linux/sh/sys/ucontext.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
/* Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand Down Expand Up @@ -32,10 +32,10 @@
typedef int greg_t;

/* Number of general registers. */
#define NGREG 16
#define NFPREG 16

/* Container for all general registers. */
typedef greg_t gregset_t[NGREG];
typedef greg_t gregset_t[NFPREG];

#ifdef __USE_GNU
/* Number of each register is the `gregset_t' array. */
Expand Down Expand Up @@ -79,10 +79,10 @@ enum
typedef int freg_t;

/* Number of FPU registers. */
#define NFREG 16
#define NFPREG 16

/* Structure to describe FPU registers. */
typedef freg_t fpregset_t[NFREG];
typedef freg_t fpregset_t[NFPREG];

/* Context to describe whole processor state. */
typedef struct
Expand Down

0 comments on commit 601ecd3

Please sign in to comment.