Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.c > #34734

Re: Sizes of pointers

From Phil Carmody <thefatphil_demunged@yahoo.co.uk>
Newsgroups comp.lang.c
Subject Re: Sizes of pointers
Date 2013-08-01 15:47 +0300
Organization A noiseless patient Spider
Message-ID <87txj97f32.fsf@bazspaz.fatphil.org> (permalink)
References <kt82k2$2gp$1@dont-email.me> <kt86k0$bjv$1@dont-email.me> <kt8aa9$939$3@dont-email.me> <lnehafzq1e.fsf@nuthaus.mib.org> <ktarve$7s6$2@dont-email.me>

Show all headers | View raw


Noob <root@127.0.0.1> writes:
> Keith Thompson wrote:
> 
> > Noob wrote:
> >
> >> Also IA-64.
> >> (64 bits for object pointers, 128 bits for function pointers AFAIR)
> > 
> > I've used IA-64 systems, though not recently.  They had 64-bit function
> > pointers, at least for the compiler (probably gcc) I was using.
> 
> Doh! You're right. I /always/ remember it wrong. (And the sad
> part is that you've already pointed this out to me in 2006.)
> 
> OK, so the /correct/ explanation is given in
> "Itanium Software Conventions and Runtime Architecture Guide"
> http://www.intel.com/content/dam/www/public/us/en/documents/guides/itanium-software-runtime-architecture-guide.pdf
> 
> > Function pointer:
> > A reference or pointer to a function. A function pointer takes the
> > form of a pointer to a special descriptor (a function descriptor)
> > that uniquely identifies the function. The function descriptor
> > contains the address of the function's actual entry point as well as
> > its global data pointer (gp).
> 
> > Global data pointer (gp)
> > The address of a reference location in a load module's data segment,
> > usually kept in a specified general register during execution. Each
> > load module has a single such reference point, typically near the
> > middle of the load module's linkage table. Applications use this
> > pointer as a base register to access linkage table entries, and data
> > that is local to the load module.
> 
> So, sizeof(void *) == sizeof(void(*)()) IIUC.

That's what not what it says. We're given from that
 sizeof(void(*)()) == sizeof(struct descriptor *)
and, not that it matters, that
 sizeof(struct descriptor) >= sizeof(global_data_pointer) + sizeof(function_address)

The former line on its own strongly implies that 
 sizeof(void(*)()) == sizeof(void*)

Phil
-- 
If "law-abiding citizens have nothing to fear" from privacy-invading 
technologies and policies, then law-abiding governments should have
nothing to fear from whistleblowers.

Back to comp.lang.c | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Sizes of pointers "James Harris \(es\)" <james.harris.1@gmail.com> - 2013-07-30 11:02 +0100
  Re: Sizes of pointers Kleuske <kleuske@nowhere.net> - 2013-07-30 11:04 +0000
    Re: Sizes of pointers Noob <root@127.0.0.1> - 2013-07-30 14:14 +0200
      Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-07-30 14:38 -0700
        Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-07-30 17:01 -0500
          Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-07-30 16:03 -0700
          Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-01 12:25 -0500
            Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 18:37 -0500
              Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-03 00:42 -0500
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 13:36 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-04 01:57 -0500
              Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-03 21:04 -0700
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 00:43 -0500
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 03:41 -0700
        Re: Sizes of pointers Noob <root@127.0.0.1> - 2013-07-31 13:29 +0200
          Re: Sizes of pointers Phil Carmody <thefatphil_demunged@yahoo.co.uk> - 2013-08-01 15:47 +0300
  Re: Sizes of pointers Ben Bacarisse <ben.usenet@bsb.me.uk> - 2013-07-30 13:09 +0100
  Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-07-30 08:11 -0400
  Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-07-30 08:33 -0400
    Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-07-30 08:38 -0500
    Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-07-30 11:54 -0700
      Re: Sizes of pointers Bart van Ingen Schenau <bart@ingen.ddns.info.invalid> - 2013-08-01 15:45 +0000
        Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-01 12:16 -0400
          Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-01 18:37 +0000
            Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-01 21:29 -0500
              Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-01 22:43 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-02 00:48 -0500
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-02 10:44 -0700
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 13:33 -0500
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-02 14:46 -0400
                Re: Sizes of pointers gazelle@shell.xmission.com (Kenny McCormack) - 2013-08-02 19:55 +0000
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 09:46 +0200
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-03 11:22 -0700
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 13:39 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-02 18:37 +0000
            Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-03 09:35 -0700
              Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-04 02:07 -0500
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 03:00 -0700
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-08 05:39 -0700
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:00 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 13:27 +0000
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:06 -0700
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-09 00:49 -0500
          Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-03 09:30 -0700
        Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-03 08:59 -0700
          Re: Sizes of pointers Bart van Ingen Schenau <bart@ingen.ddns.info.invalid> - 2013-08-04 17:55 +0000
            Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 02:41 -0700
  Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-07-30 14:52 -0700
    Re: Sizes of pointers "James Harris \(es\)" <james.harris.1@gmail.com> - 2013-07-31 10:43 +0100
      Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-07-31 07:34 -0400
      Re: Sizes of pointers Richard Damon <Richard@Damon-Family.org> - 2013-07-31 08:28 -0400
      Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-07-31 16:54 -0700
  Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-07-31 19:30 +0200
    Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-01 12:29 -0500
      Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-01 13:54 -0400
        Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-01 19:01 +0000
        Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-01 21:50 -0500
          Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-02 03:22 +0000
            Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-02 01:35 -0500
            Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 01:24 -0500
          Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-01 23:31 -0400
            Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-02 01:04 -0500
              Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-02 16:25 +0000
            Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-02 09:29 +0200
            Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-02 10:51 -0700
              Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-02 14:43 -0400
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-02 14:39 -0700
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-02 17:22 -0700
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-02 20:00 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-03 05:40 +0000
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-03 09:38 -0400
              Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-02 18:47 +0000
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 18:28 -0500
              Re: Sizes of pointers christian.bau@cbau.wanadoo.co.uk - 2013-08-06 13:05 -0700
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-06 16:36 -0400
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-06 17:44 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 20:40 +0000
      Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-01 20:19 +0200
        Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-01 21:32 -0500
    Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-01 17:43 -0500
      Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-01 19:10 -0400
        Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-01 22:32 -0500
          Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-03 11:50 -0700
            Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 14:48 -0500
              Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-03 16:53 -0400
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 23:31 -0500
                Re: Sizes of pointers Philip Lantz <prl@canterey.us> - 2013-08-03 23:56 -0700
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 20:53 +0200
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 21:18 +0200
              Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 10:39 -0700
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-08 11:29 -0700
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 17:09 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 00:33 +0000
            Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 19:50 +0000
              [OT] Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-09 16:28 -0400
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 09:51 +0200
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 10:46 +0200
      Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-02 09:24 +0200
        Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-02 16:35 +0000
          Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 17:47 -0500
            Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-04 03:58 -0700
              Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 09:17 -0500
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-04 07:43 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 04:47 +0000
                [OT] gravity James Kuyper <jameskuyper@verizon.net> - 2013-08-05 06:52 -0400
                Re: [OT] gravity Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-05 11:29 -0700
                Re: [OT] gravity James Kuyper <jameskuyper@verizon.net> - 2013-08-05 15:02 -0400
                Re: [OT] gravity glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 18:42 +0000
                Re: [OT] gravity Robert Wessel <robertwessel2@yahoo.com> - 2013-08-05 20:01 -0500
                Re: [OT] gravity James Kuyper <jameskuyper@verizon.net> - 2013-08-05 23:34 -0400
                Hidden Assumptions Re: [OT] gravity Siri Cruise <chine.bleu@yahoo.com> - 2013-08-05 22:12 -0700
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-04 19:40 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 15:18 -0500
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 15:02 -0700
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 18:47 -0500
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 19:40 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 04:53 +0000
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 22:44 -0700
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-05 02:00 -0700
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-05 07:48 -0700
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 04:13 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 13:57 +0000
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:30 -0700
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 10:34 -0500
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:55 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 00:53 +0000
              Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 04:31 +0000
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 04:48 -0700
              Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-05 23:16 -0500
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 01:01 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 10:11 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 07:20 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 15:33 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 14:23 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 23:18 +0100
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 23:45 +0000
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-07 05:59 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-07 16:44 +0000
                Re: Sizes of pointers "James Harris \(es\)" <james.harris.1@gmail.com> - 2013-08-07 18:40 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 01:01 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-08 07:40 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 03:13 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 14:10 +0000
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 11:15 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-08 11:44 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 17:34 +0000
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 17:16 +0000
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-09 01:01 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 11:03 +0000
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-08 10:15 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 20:47 +0000
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 16:28 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 13:18 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 13:21 -0500
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 14:10 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 14:42 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 20:52 +0000
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 16:39 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 23:50 +0000
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:12 -0700
          Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-08 19:18 +0200
            Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-08 11:27 -0700
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-08 21:58 +0200
                Re: Sizes of pointers Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2013-08-08 16:25 -0400
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 08:50 +0200
                Re: Sizes of pointers Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2013-08-09 11:35 -0400
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-09 11:49 -0400
                Re: Sizes of pointers Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2013-08-09 12:01 -0400
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-09 10:55 -0700
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-09 09:04 -0700
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 19:23 +0200
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 18:42 +0000
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-09 15:12 -0400
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 19:56 +0000
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-09 16:28 -0400
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-08 13:40 -0700
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-08 21:30 -0400
                Re: Sizes of pointers Ike Naar <ike@iceland.freeshell.org> - 2013-08-10 05:52 +0000
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 09:54 +0200
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-10 07:46 -0400
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-10 04:54 -0700
                Re: Sizes of pointers David Brown <david.brown@removethis.hesbynett.no> - 2013-08-10 14:51 +0200
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-10 11:12 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-10 19:14 +0000
                Re: Sizes of pointers Richard Damon <Richard@Damon-Family.org> - 2013-08-10 20:39 -0400
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 16:46 +0200
            Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 08:12 +0200
        Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-09 14:04 -0700
          Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 10:45 +0200
            Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-10 11:14 -0700
      Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-02 10:34 +0200
        Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 18:12 -0500
          Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 07:04 +0200
            Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 07:07 +0200
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 09:46 +0200
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-03 11:25 -0700
            Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-03 00:50 -0500
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 09:57 +0200
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-04 01:38 -0500
            Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 13:12 -0500
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-04 19:40 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 14:40 -0500
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 14:24 -0700
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-05 19:31 +0200
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-05 19:51 +0200
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-05 14:20 -0400
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-05 21:57 +0200
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-05 16:21 -0400
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-05 16:39 -0500
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 07:00 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 01:18 -0500
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:23 +0200
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:54 +0200
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 12:40 -0500
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:44 -0500
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-06 08:06 -0700
                Re: Sizes of pointers gazelle@shell.xmission.com (Kenny McCormack) - 2013-08-06 15:48 +0000
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 10:17 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:58 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 15:44 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 14:29 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:08 +0000
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 16:52 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 23:29 +0100
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:06 +0000
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 08:16 -0400
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:19 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:53 -0500
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 18:34 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 01:17 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 22:00 +0000
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-05 22:15 -0500
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 08:37 -0400
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:18 +0000
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 18:08 -0400
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-07 00:09 +0000
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:20 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:54 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 10:41 +0100
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-06 08:37 -0400
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 08:06 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 15:52 +0100
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-06 11:38 -0400
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 17:17 +0100
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-06 10:31 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:26 +0000
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:21 +0000
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 08:49 -0400
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 16:12 +0100
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:36 +0000
                Re: Sizes of pointers Phil Carmody <thefatphil_demunged@yahoo.co.uk> - 2013-08-07 16:38 +0300
                Re: Sizes of pointers Phil Carmody <thefatphil_demunged@yahoo.co.uk> - 2013-08-07 17:02 +0300
                Re: Sizes of pointers Thomas Jahns <jahns@idontlikespam.dkrz.de> - 2013-08-07 11:01 +0200
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-07 10:41 +0100
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-07 07:57 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-07 16:48 +0000
          Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-03 10:07 -0400
            Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 13:47 -0500

csiph-web