From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,2cb1f0b6d642e1dc X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news2.google.com!news.glorb.com!news.mv.net!nntp.TheWorld.com!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: Pascal Calling Convention Date: Wed, 30 Mar 2011 18:34:41 -0400 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: pcls6.std.com 1301524482 22516 192.74.137.71 (30 Mar 2011 22:34:42 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Wed, 30 Mar 2011 22:34:42 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:22C2Km3r2G9hvRto4kH02uRgD0c= Xref: g2news2.google.com comp.lang.ada:19587 Date: 2011-03-30T18:34:41-04:00 List-Id: tmoran@acm.org writes: > What does software/hardware Data Excecution Prevention do on Vista etc? I believe DEP causes the operating system to set per-page protections so data is not executable, by default. The checks are done in hardware. And of course code pages are not writeable by default. A process can request other page protections. Requires newer versions of x86. Linux can do the same thing. This is pretty old technology. x86 is just recently catching up. > (Other than generate spurious errors.) We eliminated almost all trampolines from GNAT, so newer versions won't cause such spurious errors. - Bob