This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


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

PATCH: Handle `V' keyletter in make-syscalls.sh


This problem didn't show up in 2.2 kernels because it has no mincore.

2001-02-26  Greg McGary  <greg@mcgary.org>

	* sysdeps/unix/make-syscalls.sh (ptr): Handle `V' keyletter.

OK to commit?

Index: sysdeps/unix/make-syscalls.sh
===================================================================
RCS file: /cvs/glibc/libc/sysdeps/unix/make-syscalls.sh,v
retrieving revision 1.22
diff -u -p -r1.22 make-syscalls.sh
--- make-syscalls.sh    2000/09/08 08:41:45     1.22
+++ make-syscalls.sh    2001/02/27 05:12:03
@@ -24,7 +24,7 @@
 # V: byte-per-page vector (3rd arg to mincore)
 # W: wait status, optionally-NULL pointer to int (e.g., 2nd arg of wait4)
 
-ptr='[abBfFINpPsSW]'   # all pointer keyletters
+ptr='[abBfFINpPsSWV]'  # all pointer keyletters
 int='[inv]'            # all scalar keyletters
 typ='[ifnNpP]'         # typed-arg keyletters: we capture type for use in thunk
 


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