Path: utzoo!attcan!telly!lethe!torsqnt!news-server.csri.toronto.edu!rutgers!mit-eddie!uw-beaver!milton!blake.u.washington.edu!water1 From: water1@blake.u.washington.edu (Dongxia Li) Newsgroups: comp.lang.c++ Subject: Re: TC++ problem w/huge arrays of struct? Keywords: TC++; arrays; pointers; struct; Message-ID: <13035@milton.u.washington.edu> Date: 15 Dec 90 00:50:40 GMT References: <678@roo.UUCP> Sender: news@milton.u.washington.edu Organization: University of Washington, Seattle Lines: 21 In article <678@roo.UUCP> barbarin@Xerox.com (Mike Barbarino) writes: >I'm having some problems with TC++ : const DBSIZE = 31000; struct weights { unsigned long x; unsigned long y; }; weights huge *accumulator = (weight *)farmalloc(MEMSIZE); ... By deleting an element in the structure (say y), recompiling, etc., the assignment >What am I doing wrong? Thanks in advance... Your data block is larger than 64k limit. Read HELPME!.doc come with the compiler for instruction to handle this kind of problem. // ************************************************************************* // Hong Li // water@blake.u.washington.edu // *************************************************************************