public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* g77 size of variable too large
@ 2004-01-06 14:33 Fabian Braennstroem
  2004-01-06 23:24 ` Toon Moene
  0 siblings, 1 reply; 8+ messages in thread
From: Fabian Braennstroem @ 2004-01-06 14:33 UTC (permalink / raw)
  To: gcc-help

Hello,


For my Fortran-Code I use following in the COMMON-File:

      parameter(it=478,jt=303,kt=215,nphit=8,nphito=8)

     1/vectr/phi(it,jt,kt,nphit),phio(it,jt,kt,nphito),prt(nphit),
     2        resor(nphit),reref(nphit),urf(nphit),ustarv(it,jt,kt),
     3        phic(it,jt,kt,6),cs(it,jt,kt),tracel(it,jt,kt),
     4        csk(it,jt,kt),
     6        conve(it,jt,kt),convn(it,jt,kt),convh(it,jt,kt),
     7        smp(it,jt,kt),dtfals(nphit)

I get an error like:
 size of variable 'vectr_' is too large

With these parameters, it works fine:
      parameter(it=164,jt=52,kt=100,nphit=8,nphito=8)


Does anybody know, if I have to adjust anything in the g77-source (like
for large-unit-numbers)? Or did I anything wrong?

Greetings!
Fabian

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: g77 size of variable too large
  2004-01-06 14:33 g77 size of variable too large Fabian Braennstroem
@ 2004-01-06 23:24 ` Toon Moene
  2004-01-07  7:02   ` Fabian Braennstroem
  0 siblings, 1 reply; 8+ messages in thread
From: Toon Moene @ 2004-01-06 23:24 UTC (permalink / raw)
  To: f.braennstroem; +Cc: gcc-help

Fabian Braennstroem wrote:

> For my Fortran-Code I use following in the COMMON-File:
> 
>       parameter(it=478,jt=303,kt=215,nphit=8,nphito=8)
> 
>      1/vectr/phi(it,jt,kt,nphit),phio(it,jt,kt,nphito),prt(nphit),
>      2        resor(nphit),reref(nphit),urf(nphit),ustarv(it,jt,kt),
>      3        phic(it,jt,kt,6),cs(it,jt,kt),tracel(it,jt,kt),
>      4        csk(it,jt,kt),
>      6        conve(it,jt,kt),convn(it,jt,kt),convh(it,jt,kt),
>      7        smp(it,jt,kt),dtfals(nphit)
> 
> I get an error like:
>  size of variable 'vectr_' is too large

There's something missing in this example, as this doesn't compile. 
Please send us a complete, compilable example.

Thanks,

-- 
Toon Moene - mailto:toon@moene.indiv.nluug.nl - phoneto: +31 346 214290
Saturnushof 14, 3738 XG  Maartensdijk, The Netherlands
Maintainer, GNU Fortran 77: http://gcc.gnu.org/onlinedocs/g77_news.html
GNU Fortran 95: http://gcc.gnu.org/fortran/ (under construction)

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: g77 size of variable too large
  2004-01-06 23:24 ` Toon Moene
@ 2004-01-07  7:02   ` Fabian Braennstroem
  2004-01-09 11:43     ` Fabian Braennstroem
  0 siblings, 1 reply; 8+ messages in thread
From: Fabian Braennstroem @ 2004-01-07  7:02 UTC (permalink / raw)
  To: Toon Moene; +Cc: gcc-help

[-- Attachment #1: Type: text/plain, Size: 814 bytes --]

On Wed, 2004-01-07 at 00:26, Toon Moene wrote:
> Fabian Braennstroem wrote:
> 
> > For my Fortran-Code I use following in the COMMON-File:
> > 
> >       parameter(it=478,jt=303,kt=215,nphit=8,nphito=8)
> > 
> >      1/vectr/phi(it,jt,kt,nphit),phio(it,jt,kt,nphito),prt(nphit),
> >      2        resor(nphit),reref(nphit),urf(nphit),ustarv(it,jt,kt),
> >      3        phic(it,jt,kt,6),cs(it,jt,kt),tracel(it,jt,kt),
> >      4        csk(it,jt,kt),
> >      6        conve(it,jt,kt),convn(it,jt,kt),convh(it,jt,kt),
> >      7        smp(it,jt,kt),dtfals(nphit)
> > 
> > I get an error like:
> >  size of variable 'vectr_' is too large
> 
> There's something missing in this example, as this doesn't compile. 
> Please send us a complete, compilable example.
> 

Yes, the example is attached.

Thanks!
Fabian




[-- Attachment #2: COMMON --]
[-- Type: text/plain, Size: 2103 bytes --]

c      parameter(it=164,jt=52,kt=100,nphit=8,nphito=8)
      parameter(it=478,jt=303,kt=215,nphit=8,nphito=8)
c it    : i-dimension of arrays (must be >= ni)
c jt    : j-dimension of arrays (must be >= nj)
c kt    : k-dimension of arrays (must be >= nk)
c nphit : dimension of last index in phi-vector (must be >= number of variables)
c nphito: dimension of last index in phio-vector (if steady=.false., it must
c         be >= number of variables; if steady=.true. it can be set to 1 in
c         order to save memory)
c
      common
     1/pres/ipref,jpref,kpref
     1/prin1/plane
     1/prin2/indmon,imon,jmon,kmon
     1/vecti/nsweep(nphit)
     1/vectl/solve(nphit)
     1/vectc/head(nphit)
     1/vectr/phi(it,jt,kt,nphit),phio(it,jt,kt,nphito),prt(nphit),
     2        resor(nphit),reref(nphit),urf(nphit),ustarv(it,jt,kt),
     3        phic(it,jt,kt,6),cs(it,jt,kt),tracel(it,jt,kt),
     4        csk(it,jt,kt),
     6        conve(it,jt,kt),convn(it,jt,kt),convh(it,jt,kt),
     7        smp(it,jt,kt),dtfals(nphit)
     1/alli/ni,nj,nk,nim1,njm1,nkm1,iter,maxit,nphmax,itstep,ntstep,
     2      iturb,itime,jst1
     1/allr/great,small,sormax,betap,time,dt(100000),tscoef,acrank
     1/allc/scheme,schtur,name,linsol(nphit)
     1/alll/save,restrt,cycli,cyclk,ortogo,steady,echo,les,expl,dyn,
     2      dynk,multig
      common
     1/geom/xc(it),yc(jt),zc(kt),vol(it,jt,kt),
     2      areaex(jt,kt),areany(it,kt),areahz(it,jt),
     5      fx(it),fy(jt),fz(kt)
     1/flupr/urfvis,viscos,vismin,densit,vis(it,jt,kt)
     1/turb/cmucd,cmu,cd,c1,c2,cappa,elog,pfun,prandl
     1/coef/ap(it,jt,kt),an(it,jt,kt),as(it,jt,kt),ae(it,jt,kt),
     2      aw(it,jt,kt),ah(it,jt,kt),al(it,jt,kt),sp(it,jt,kt),
     3      su(it,jt,kt),suv(it,jt,kt),suw(it,jt,kt),spvw(it,jt,kt)
     1/point/u,v,w,p,pp,m,te,ed,t,f1,f2,f3
      integer u,v,w,p,pp,m,te,ed,t,f1,f2,f3
      logical solve,save,restrt,cycli,cyclk,steady,ortogo,echo,les
      logical dynk,multig,expl,dyn
      character plane*2,head*24,scheme*2,schtur*2,name(nphit)*2,linsol*2






[-- Attachment #3: main1.f --]
[-- Type: text/x-fortran, Size: 711 bytes --]

      program main
      include 'CASECOM'
      include 'COMMON' 
      character*24 hedvis,hedden,hedx,hedy,hedz
      real*4 dtime, etime
      real*4 darray(2),dd,tarr(3)
      parameter (ittelaps=10)
      real*4 ttstepi,ttstep,ttstept,ttsteps,ttelaps(ittelaps)
      dimension ustart(jt)
      character*8 ttnames(ittelaps)
      data ttnames/'  calcu ','  calcv ','  calcw ','   conv '
     &,'  calcpe ','  calcte ','   vist ','  calced','  calcph'
     &,'   SUM '/

c------define integer pointers used in the vectors phi, urf, nsweep etc.
      u=1
      v=2
      w=3
      p=4
      pp=5
      te=6
      ed=7
      t=8
      f1=9
      f2=10

      end










^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: g77 size of variable too large
  2004-01-07  7:02   ` Fabian Braennstroem
@ 2004-01-09 11:43     ` Fabian Braennstroem
  2004-01-09 13:21       ` bdavis
  2004-01-09 20:33       ` Toon Moene
  0 siblings, 2 replies; 8+ messages in thread
From: Fabian Braennstroem @ 2004-01-09 11:43 UTC (permalink / raw)
  To: gcc-help

Hello,

me again. I just saw on in the browser that you can't see the attached
files. So here they are inline:

*************************************************************************
*** main.f *************************************************************

      program main
      include 'CASECOM'
      include 'COMMON' 
      character*24 hedvis,hedden,hedx,hedy,hedz
      real*4 dtime, etime
      real*4 darray(2),dd,tarr(3)
      parameter (ittelaps=10)
      real*4 ttstepi,ttstep,ttstept,ttsteps,ttelaps(ittelaps)
      dimension ustart(jt)
      character*8 ttnames(ittelaps)
      data ttnames/'  calcu ','  calcv ','  calcw ','   conv '
     &,'  calcpe ','  calcte ','   vist ','  calced','  calcph'
     &,'   SUM '/

c------define integer pointers used in the vectors phi, urf, nsweep etc.
      u=1
      v=2
      w=3
      p=4
      pp=5
      te=6
      ed=7
      t=8
      f1=9
      f2=10

      end



*************************************************************************
*** COMMON *************************************************************


 c      parameter(it=164,jt=52,kt=100,nphit=8,nphito=8)
      parameter(it=478,jt=303,kt=215,nphit=8,nphito=8)
c it    : i-dimension of arrays (must be >= ni)
c jt    : j-dimension of arrays (must be >= nj)
c kt    : k-dimension of arrays (must be >= nk)
c nphit : dimension of last index in phi-vector (must be >= number of
variables)
c nphito: dimension of last index in phio-vector (if steady=.false., it
must
c         be >= number of variables; if steady=.true. it can be set to 1
in
c         order to save memory)
c
      common
     1/pres/ipref,jpref,kpref
     1/prin1/plane
     1/prin2/indmon,imon,jmon,kmon
     1/vecti/nsweep(nphit)
     1/vectl/solve(nphit)
     1/vectc/head(nphit)
     1/vectr/phi(it,jt,kt,nphit),phio(it,jt,kt,nphito),prt(nphit),
     2        resor(nphit),reref(nphit),urf(nphit),ustarv(it,jt,kt),
     3        phic(it,jt,kt,6),cs(it,jt,kt),tracel(it,jt,kt),
     4        csk(it,jt,kt),
     6        conve(it,jt,kt),convn(it,jt,kt),convh(it,jt,kt),
     7        smp(it,jt,kt),dtfals(nphit)
     1/alli/ni,nj,nk,nim1,njm1,nkm1,iter,maxit,nphmax,itstep,ntstep,
     2      iturb,itime,jst1
     1/allr/great,small,sormax,betap,time,dt(100000),tscoef,acrank
     1/allc/scheme,schtur,name,linsol(nphit)
     1/alll/save,restrt,cycli,cyclk,ortogo,steady,echo,les,expl,dyn,
     2      dynk,multig
      common
     1/geom/xc(it),yc(jt),zc(kt),vol(it,jt,kt),
     2      areaex(jt,kt),areany(it,kt),areahz(it,jt),
     5      fx(it),fy(jt),fz(kt)
     1/flupr/urfvis,viscos,vismin,densit,vis(it,jt,kt)
     1/turb/cmucd,cmu,cd,c1,c2,cappa,elog,pfun,prandl
     1/coef/ap(it,jt,kt),an(it,jt,kt),as(it,jt,kt),ae(it,jt,kt),
     2      aw(it,jt,kt),ah(it,jt,kt),al(it,jt,kt),sp(it,jt,kt),
     3      su(it,jt,kt),suv(it,jt,kt),suw(it,jt,kt),spvw(it,jt,kt)
     1/point/u,v,w,p,pp,m,te,ed,t,f1,f2,f3
      integer u,v,w,p,pp,m,te,ed,t,f1,f2,f3
      logical solve,save,restrt,cycli,cyclk,steady,ortogo,echo,les
      logical dynk,multig,expl,dyn
      character plane*2,head*24,scheme*2,schtur*2,name(nphit)*2,linsol*2

Greetings!
Fabian

> > There's something missing in this example, as this doesn't compile. 
> > Please send us a complete, compilable example.
> > 
> 
> Yes, the example is attached.
> 
> Thanks!
> Fabian


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: g77 size of variable too large
  2004-01-09 11:43     ` Fabian Braennstroem
@ 2004-01-09 13:21       ` bdavis
  2004-01-09 20:33       ` Toon Moene
  1 sibling, 0 replies; 8+ messages in thread
From: bdavis @ 2004-01-09 13:21 UTC (permalink / raw)
  To: gcc-help

This one doesn't compile either, at least for me.

So, as an excuse to have one more cup of coffee before leaving
for work :), I distilled it down to a small example:

C      parameter(it=164,jt=52,kt=100,nphit=8,nphito=8)
       parameter(it=478,jt=303,kt=215,nphit=8,nphito=8)
      common
     1/vectr/phi(it,jt,kt,nphit),phio(it,jt,kt,nphito),prt(nphit),
     2        resor(nphit),reref(nphit),urf(nphit),ustarv(it,jt,kt),
     3        phic(it,jt,kt,6),cs(it,jt,kt),tracel(it,jt,kt),
     4        csk(it,jt,kt),
     6        conve(it,jt,kt),convn(it,jt,kt),convh(it,jt,kt),
     7        smp(it,jt,kt),dtfals(nphit)
      integer u,v,w,p,pp,m,te,ed,t,f1,f2,f3
      logical solve,save,restrt,cycli,cyclk,steady,ortogo,echo,les
      logical dynk,multig,expl,dyn
      character plane*2,head*24,scheme*2,schtur*2,name(nphit)*2,linsol*2
      end

$ g77 big.f
big.f:4: error: size of variable `vectr_' is too large
$
 
Fabian, is this the error you have been getting ?


regards,
bud davis


On Fri, Jan 09, 2004 at 12:46:34PM +0100, Fabian Braennstroem wrote:
> Hello,
> 
> me again. I just saw on in the browser that you can't see the attached
> files. So here they are inline:
> 
> *************************************************************************
> *** main.f *************************************************************
> 
>       program main
>       include 'CASECOM'
>       include 'COMMON' 
>       character*24 hedvis,hedden,hedx,hedy,hedz
>       real*4 dtime, etime
>       real*4 darray(2),dd,tarr(3)
>       parameter (ittelaps=10)
>       real*4 ttstepi,ttstep,ttstept,ttsteps,ttelaps(ittelaps)
>       dimension ustart(jt)
>       character*8 ttnames(ittelaps)
>       data ttnames/'  calcu ','  calcv ','  calcw ','   conv '
>      &,'  calcpe ','  calcte ','   vist ','  calced','  calcph'
>      &,'   SUM '/
> 
> c------define integer pointers used in the vectors phi, urf, nsweep etc.
>       u=1
>       v=2
>       w=3
>       p=4
>       pp=5
>       te=6
>       ed=7
>       t=8
>       f1=9
>       f2=10
> 
>       end
> 
> 
> 
> *************************************************************************
> *** COMMON *************************************************************
> 
> 
>  c      parameter(it=164,jt=52,kt=100,nphit=8,nphito=8)
>       parameter(it=478,jt=303,kt=215,nphit=8,nphito=8)
> c it    : i-dimension of arrays (must be >= ni)
> c jt    : j-dimension of arrays (must be >= nj)
> c kt    : k-dimension of arrays (must be >= nk)
> c nphit : dimension of last index in phi-vector (must be >= number of
> variables)
> c nphito: dimension of last index in phio-vector (if steady=.false., it
> must
> c         be >= number of variables; if steady=.true. it can be set to 1
> in
> c         order to save memory)
> c
>       common
>      1/pres/ipref,jpref,kpref
>      1/prin1/plane
>      1/prin2/indmon,imon,jmon,kmon
>      1/vecti/nsweep(nphit)
>      1/vectl/solve(nphit)
>      1/vectc/head(nphit)
>      1/vectr/phi(it,jt,kt,nphit),phio(it,jt,kt,nphito),prt(nphit),
>      2        resor(nphit),reref(nphit),urf(nphit),ustarv(it,jt,kt),
>      3        phic(it,jt,kt,6),cs(it,jt,kt),tracel(it,jt,kt),
>      4        csk(it,jt,kt),
>      6        conve(it,jt,kt),convn(it,jt,kt),convh(it,jt,kt),
>      7        smp(it,jt,kt),dtfals(nphit)
>      1/alli/ni,nj,nk,nim1,njm1,nkm1,iter,maxit,nphmax,itstep,ntstep,
>      2      iturb,itime,jst1
>      1/allr/great,small,sormax,betap,time,dt(100000),tscoef,acrank
>      1/allc/scheme,schtur,name,linsol(nphit)
>      1/alll/save,restrt,cycli,cyclk,ortogo,steady,echo,les,expl,dyn,
>      2      dynk,multig
>       common
>      1/geom/xc(it),yc(jt),zc(kt),vol(it,jt,kt),
>      2      areaex(jt,kt),areany(it,kt),areahz(it,jt),
>      5      fx(it),fy(jt),fz(kt)
>      1/flupr/urfvis,viscos,vismin,densit,vis(it,jt,kt)
>      1/turb/cmucd,cmu,cd,c1,c2,cappa,elog,pfun,prandl
>      1/coef/ap(it,jt,kt),an(it,jt,kt),as(it,jt,kt),ae(it,jt,kt),
>      2      aw(it,jt,kt),ah(it,jt,kt),al(it,jt,kt),sp(it,jt,kt),
>      3      su(it,jt,kt),suv(it,jt,kt),suw(it,jt,kt),spvw(it,jt,kt)
>      1/point/u,v,w,p,pp,m,te,ed,t,f1,f2,f3
>       integer u,v,w,p,pp,m,te,ed,t,f1,f2,f3
>       logical solve,save,restrt,cycli,cyclk,steady,ortogo,echo,les
>       logical dynk,multig,expl,dyn
>       character plane*2,head*24,scheme*2,schtur*2,name(nphit)*2,linsol*2
> 
> Greetings!
> Fabian
> 
> > > There's something missing in this example, as this doesn't compile. 
> > > Please send us a complete, compilable example.
> > > 
> > 
> > Yes, the example is attached.
> > 
> > Thanks!
> > Fabian
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: g77 size of variable too large
  2004-01-09 11:43     ` Fabian Braennstroem
  2004-01-09 13:21       ` bdavis
@ 2004-01-09 20:33       ` Toon Moene
  2004-01-10 17:07         ` Fabian Braennstroem
  1 sibling, 1 reply; 8+ messages in thread
From: Toon Moene @ 2004-01-09 20:33 UTC (permalink / raw)
  To: f.braennstroem; +Cc: gcc-help

Fabian Braennstroem wrote:

> Hello,
> 
> me again. I just saw on in the browser that you can't see the attached
> files. So here they are inline:

>       parameter(it=478,jt=303,kt=215,nphit=8,nphito=8)
...
>      1/vectr/phi(it,jt,kt,nphit),phio(it,jt,kt,nphito),prt(nphit),
>      2        resor(nphit),reref(nphit),urf(nphit),ustarv(it,jt,kt),
>      3        phic(it,jt,kt,6),cs(it,jt,kt),tracel(it,jt,kt),
>      4        csk(it,jt,kt),
>      6        conve(it,jt,kt),convn(it,jt,kt),convh(it,jt,kt),
>      7        smp(it,jt,kt),dtfals(nphit)

478 * 303 * 215 * 8 * 4 bytes = 996457920 bytes ~ 1 Gbyte.

You have two such arrays (phi, phio) and phic, which is only slightly 
smaller.

So ~ 3 Gbyte of arrays on a 32-bit machine.  That's not going to work.

My advise: By an AMD64 or a Apple G5.

-- 
Toon Moene - mailto:toon@moene.indiv.nluug.nl - phoneto: +31 346 214290
Saturnushof 14, 3738 XG  Maartensdijk, The Netherlands
Maintainer, GNU Fortran 77: http://gcc.gnu.org/onlinedocs/g77_news.html
GNU Fortran 95: http://gcc.gnu.org/fortran/ (under construction)

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: g77 size of variable too large
  2004-01-09 20:33       ` Toon Moene
@ 2004-01-10 17:07         ` Fabian Braennstroem
  2004-01-11  0:14           ` Paulo Cortes
  0 siblings, 1 reply; 8+ messages in thread
From: Fabian Braennstroem @ 2004-01-10 17:07 UTC (permalink / raw)
  To: gcc-help

Hello,

On Fri, 2004-01-09 at 21:27, Toon Moene wrote:

> >       parameter(it=478,jt=303,kt=215,nphit=8,nphito=8)
> ...
> >      1/vectr/phi(it,jt,kt,nphit),phio(it,jt,kt,nphito),prt(nphit),
> >      2        resor(nphit),reref(nphit),urf(nphit),ustarv(it,jt,kt),
> >      3        phic(it,jt,kt,6),cs(it,jt,kt),tracel(it,jt,kt),
> >      4        csk(it,jt,kt),
> >      6        conve(it,jt,kt),convn(it,jt,kt),convh(it,jt,kt),
> >      7        smp(it,jt,kt),dtfals(nphit)
> 
> 478 * 303 * 215 * 8 * 4 bytes = 996457920 bytes ~ 1 Gbyte.
> 
> You have two such arrays (phi, phio) and phic, which is only slightly 
> smaller.
> 
> So ~ 3 Gbyte of arrays on a 32-bit machine.  That's not going to work.
> 
Thanks!
> My advise: By an AMD64 or a Apple G5.
Maybe an AMD64

Greetings
Fabian


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: g77 size of variable too large
  2004-01-10 17:07         ` Fabian Braennstroem
@ 2004-01-11  0:14           ` Paulo Cortes
  0 siblings, 0 replies; 8+ messages in thread
From: Paulo Cortes @ 2004-01-11  0:14 UTC (permalink / raw)
  To: Fabian Braennstroem; +Cc: gcc-help

Hello

I am very sorry for the late response but I was still
holding up at some possible additional help, that
unfortunately did not come.
I am sorry to say that I will not be able to attend
the conference, but I am much grateful for your support
and I hope that someone else can benefit from it.


Best regards

Paulo Cortes

On Sat, 10 Jan 2004, Fabian Braennstroem wrote:

> Hello,
>
> On Fri, 2004-01-09 at 21:27, Toon Moene wrote:
>
> > >       parameter(it=478,jt=303,kt=215,nphit=8,nphito=8)
> > ...
> > >      1/vectr/phi(it,jt,kt,nphit),phio(it,jt,kt,nphito),prt(nphit),
> > >      2        resor(nphit),reref(nphit),urf(nphit),ustarv(it,jt,kt),
> > >      3        phic(it,jt,kt,6),cs(it,jt,kt),tracel(it,jt,kt),
> > >      4        csk(it,jt,kt),
> > >      6        conve(it,jt,kt),convn(it,jt,kt),convh(it,jt,kt),
> > >      7        smp(it,jt,kt),dtfals(nphit)
> >
> > 478 * 303 * 215 * 8 * 4 bytes = 996457920 bytes ~ 1 Gbyte.
> >
> > You have two such arrays (phi, phio) and phic, which is only slightly
> > smaller.
> >
> > So ~ 3 Gbyte of arrays on a 32-bit machine.  That's not going to work.
> >
> Thanks!
> > My advise: By an AMD64 or a Apple G5.
> Maybe an AMD64
>
> Greetings
> Fabian
>
>
>

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2004-01-11  0:14 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-01-06 14:33 g77 size of variable too large Fabian Braennstroem
2004-01-06 23:24 ` Toon Moene
2004-01-07  7:02   ` Fabian Braennstroem
2004-01-09 11:43     ` Fabian Braennstroem
2004-01-09 13:21       ` bdavis
2004-01-09 20:33       ` Toon Moene
2004-01-10 17:07         ` Fabian Braennstroem
2004-01-11  0:14           ` Paulo Cortes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).