Path: utzoo!utgpu!jarvis.csri.toronto.edu!cs.utexas.edu!hellgate.utah.edu!helios.ee.lbl.gov!nosc!ucsd!ucbvax!SUMEX-AIM.STANFORD.EDU!Rice From: Rice@SUMEX-AIM.STANFORD.EDU (James Rice) Newsgroups: comp.sys.ti.explorer Subject: Re: PDL Message-ID: <2837271810-7059303@KSL-EXP-6> Date: 28 Nov 89 19:03:30 GMT Sender: daemon@ucbvax.BERKELEY.EDU Distribution: inet Organization: The Internet Lines: 37 >> We have had PDL overflow problem. May be because of >> the nature of >> applications we are using, we can get by by raising >> PDL only once. BTW, how do you raise the PDL? The >> way we have been doing it is by typing the RESUME key >> which basically is to continue with more PDL. Is it >> possible to specify a higher value of PDL right in >> the beginning? >> thanks Raghu Further to my last reply: Yes, you can specify the PDL sizes of any new process you create, thus: (make-instance 'my-window-with-process-mixin :width <> :height <> :process '(My-Process-Top-Level-Function :special-pdl-size 4000 :regular-pdl-size 10000 ) ) or (make-process "My Process" :priority -1 :special-pdl-size 4000 :regular-pdl-size 10000 ) Rice.