This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Patch RTEMS: make PAGESIZE and PAGE_SIZE match


On Dec  5 10:55, Gedare Bloom wrote:
> According to POSIX PAGESIZE and PAGE_SIZE must be identical. This
> pages changes the constant PAGESIZE in
> newlib/libc/sys/rtems/include/limits.h to match the PAGE_SIZE constant
> defined in newlib/libc/sys/rtems/machine/param.h.
> 
> See also: https://www.rtems.org/bugzilla/show_bug.cgi?id=1216
> 
> 2013-12-05  Chirayu Desai  <...>
> 
>     * newlib/libc/sys/rtems/include/limits.h: Update page size
>       to match newlib/libc/sys/rtems/machine/param.h

> Index: newlib/libc/sys/rtems/include/limits.h
> ===================================================================
> RCS file: /cvs/src/src/newlib/libc/sys/rtems/include/limits.h,v
> retrieving revision 1.5
> diff -u -r1.5 limits.h
> --- newlib/libc/sys/rtems/include/limits.h	15 Oct 2013 17:38:32 -0000	1.5
> +++ newlib/libc/sys/rtems/include/limits.h	5 Dec 2013 15:39:34 -0000
> @@ -66,7 +66,7 @@
>  #define DELAYTIMER_MAX          32
>  #define MQ_OPEN_MAX             8
>  #define MQ_PRIO_MAX             32
> -#define PAGESIZE                1
> +#define PAGESIZE                (1<<12)

Wouldn't 

  #define PAGESIZE PAGE_SIZE

make more sense here?


Corinna

-- 
Corinna Vinschen
Cygwin Maintainer
Red Hat

Attachment: pgp6iVUhj_Gso.pgp
Description: PGP signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]