Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S262525AbVESP5p (ORCPT ); Thu, 19 May 2005 11:57:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S262501AbVESP5p (ORCPT ); Thu, 19 May 2005 11:57:45 -0400 Received: from ms-smtp-02.nyroc.rr.com ([24.24.2.56]:4495 "EHLO ms-smtp-02.nyroc.rr.com") by vger.kernel.org with ESMTP id S262525AbVESP5l (ORCPT ); Thu, 19 May 2005 11:57:41 -0400 Subject: Re: Illegal use of reserved word in system.h From: Steven Rostedt To: Andreas Schwab Cc: linux-os@analogic.com, linux-kernel@vger.kernel.org, "Gilbert, John" , Kyle Moffett , Adrian Bunk , Arjan van de Ven , "Maciej W. Rozycki" In-Reply-To: References: <2692A548B75777458914AC89297DD7DA08B0866F@bronze.dolby.net> <20050518195337.GX5112@stusta.de> <6EA08D88-7C67-48ED-A9EF-FEAAB92D8B8F@mac.com> <20050519112840.GE5112@stusta.de> <1116505655.6027.45.camel@laptopd505.fenrus.org> <1116512140.15866.42.camel@localhost.localdomain> Content-Type: text/plain Organization: Kihon Technologies Date: Thu, 19 May 2005 11:56:33 -0400 Message-Id: <1116518193.27471.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.2.2 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1478 Lines: 55 On Thu, 2005-05-19 at 17:19 +0200, Andreas Schwab wrote: > "Richard B. Johnson" writes: > > > It's also hard to see what is happening in 'C'. When I execute > > this: > > > > #include > > #include > > > > int main(int cnt, char *argv[], char *env[], char *aux[]) > > { > > printf("Aux 0 = %s\n", aux[0]); > > // printf("Aux 1 = %s\n", aux[1]); > > } > > There is no pointer to the aux table passed to main, you have to skip past > the environment. Also, the aux table is an array of key/value pairs. > > > This shows that ld-linux.so, that got called first, didn't > > preserve the vector. > > It does. > Here's a simple program to show you your pages size ;-), Now I don't know enough about the elfinfo size and such to make this a real program, but it should at least prove a point! #include int main(int argc, char **argv, char **env) { int i; long *p; for (i=0; env[i]; i++); p = (long*)(&env[i+1]); for (i=0; i < 10; i++) { long type = *p++; if (type == 6) printf("pagesz = 0x%lx (%ld)\n",*p,*p); p++; } return 0; } -- Steve - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/