diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-09-08 09:46:06 -0700 |
---|---|---|
committer | Roland McGrath <mcgrathr@chromium.org> | 2011-09-08 09:46:06 -0700 |
commit | a12b2239ddec16b07f2850786151d64e07b86d53 (patch) | |
tree | 106e18cf38db073e6322047b44d31507708e9382 /sysdeps | |
parent | 7f513ec8b3cd7816a897052bd472c0bfd553e910 (diff) | |
download | glibc-a12b2239ddec16b07f2850786151d64e07b86d53.tar.gz glibc-a12b2239ddec16b07f2850786151d64e07b86d53.tar.xz glibc-a12b2239ddec16b07f2850786151d64e07b86d53.zip |
sysdeps/mach/hurd/sys/param.h (DEV_BSIZE): New macro.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/mach/hurd/sys/param.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/sys/param.h b/sysdeps/mach/hurd/sys/param.h index 699ba35109..21dc41266c 100644 --- a/sysdeps/mach/hurd/sys/param.h +++ b/sysdeps/mach/hurd/sys/param.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1994, 1995, 1997, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1993,1994,1995,1997,1999,2011 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 @@ -119,6 +119,10 @@ #define MAX(a,b) (((a)>(b))?(a):(b)) +/* Unit of `st_blocks'. */ +#define DEV_BSIZE 512 + + /* Scale factor for scaled integers used to count %cpu time and load avgs. The number of CPU `tick's that map to a unique `%age' can be expressed |