[comp.sys.sgi] ERR #2 winopen: ERR_OUTMEM

millercb@gauguin.Princeton.EDU (Clifford B Miller) (01/08/91)

Hiya folks,

I got my answer to changing window icontitles, thanks to a very nice
script by Chris Hull of uvm.edu.  No glare-screens yet, I'm surprised!

Anyway, a new question:  I'm trying to write a program that opens a window
and displays an image, then waits for an event (a menu-choice actually),
then closes the window and opens a new one, displaying another image, and
so on.  The program works on the first image no problem, but after
receiving the menu choice and the first window closes, the program 
crashes with:

ERROR #2 winope : ERR_OUTMEM
ERROR #75 winope : ERR_UNABLETOOPEN
ERROR #75 winopen : ERR_UNABLETOOPEN

as its only response.  Nothing in SYSLOG at all.  No error messages on the
console window either.  The program is definitely not a significant memory
hog (in fact you can bring up several independent invocations of it each
displaying a different image, proving that the images themselves are not
too large to fit in memory).  What could the problem be?

Please email suggestions/help to cliff@research.nec.com.
Thanks in advance!
-- Cliff

" ratcliffe) (01/10/91)

In article <5093@idunno.Princeton.EDU> millercb@gauguin.Princeton.EDU (Clifford B Miller) writes:
>Hiya folks,
>
>I got my answer to changing window icontitles, thanks to a very nice
>script by Chris Hull of uvm.edu.  No glare-screens yet, I'm surprised!
>
>Anyway, a new question:  I'm trying to write a program that opens a window
>and displays an image, then waits for an event (a menu-choice actually),
>then closes the window and opens a new one, displaying another image, and
>so on.  The program works on the first image no problem, but after
>receiving the menu choice and the first window closes, the program 
>crashes with:
>
>ERROR #2 winope : ERR_OUTMEM
>ERROR #75 winope : ERR_UNABLETOOPEN
>ERROR #75 winopen : ERR_UNABLETOOPEN
>
>as its only response.  Nothing in SYSLOG at all.  No error messages on the
>console window either.  The program is definitely not a significant memory
>hog (in fact you can bring up several independent invocations of it each
>displaying a different image, proving that the images themselves are not
>too large to fit in memory).  What could the problem be?
>
>Please email suggestions/help to cliff@research.nec.com.
>Thanks in advance!
>-- Cliff

below is an on-line copy of the 1-99 GL Error #'s list that was published
in the March/April 1990 issue of the Customer Support Division's newsletter,
the "Pipeline".  according to *my* sources, this newsletter gets shipped to
every IRIS customer who has a service/support contract with SGI.  if you 
want more info regarding it, try e-mailing to pipeline@csd.sgi.com or
US postal mail to

		 Silicon Graphics, Inc.
		 M/S 12L-190
		 2011 North Shoreline Blvd.
		 Mountain View, CA   94039
		 Attn:  Peter Lonsky



                           ------- * -------

This is a canonical list of the error messages used in the graphics library.  
The list was compiled by taking the list of errors from the file error.h in 
/usr/include/gl and then searching through the source tree for locations of
each error message.  Then, by looking at the code, it was determined what 
the error messages *really* meant.  The errors are listed according to the 
numerical value they were given in the file errors.h.  



1  ERR_SINGMATRIX: string = "ERR_SINGMATRIX"
   -the matrix given cannot be inverted.  Usually done by scaling a zero value.
    (setting near and far planes to 0)
2  ERR_OUTMEM: string = "ERR_OUTMEM"
   -ran out of memory, malloc failed.
3  ERR_NEGSIDES: string = "ERR_NEGSIDES"
   -program tried to generate a polygon with less than zero sides (ie. negative)
4  ERR_BADWINDOW: string = "ERR_BADWINDOW"
   -probably the values for {left-right|top-bottom|far-near} were switched.
    left, top and far must be greater than right bottom and near values.
5  ERR_NOOPENOBJ: string = "ERR_NOOPENOBJ"
   -program tried to edit an object when there wasn't any object to edit.
6  ERR_NOFONTRAM: string = "ERR_NOFONTRAM"
   _OBSOLETE_
7  ERR_FOV: string = "ERR_FOV"
   -fovy must be greater than 1.0 and less than or equal to 1800.  (note: the 
    fovy should be ten times the angle than is the result of the tangent of the
    window width and the distance from viewer to screen for best results. (ie.
    fovy for a full screen seen 2 feet away should be about 337 (inverse tan of 
    16/24))
8  ERR_BASISID: string = "ERR_BASISID"
   -the pointers to the matricies being for precision or curve type {bspline|
    cardinal|bezier} being used are not equivalent or the pointer is null.
    Also, possibly one of the basis id's was not found.  using undefined basis
    number.
9  ERR_NEGINDEX: string = "ERR_NEGINDEX"
   _OBSOLETE_
10 ERR_NOCLIPPERS: string = "ERR_NOCLIPPERS"
   _OBSOLETE_
11 ERR_STRINGBUG: string = "ERR_STRINGBUG"
   _OBSOLETE_
12 ERR_NOCURVBASIS: string = "ERR_NOCURVBASIS"
   -basis for the curve must be set before drawing the curve
13 ERR_BADCURVID: string = "ERR_BADCURVID"
   _OBSOLETE_
14 ERR_NOPTCHBASIS: string = "ERR_NOPTCHBASIS"
   -basis for the patch must be set before drawing the patch
15 ERR_FEEDPICK: string = "ERR_FEEDPICK"
   _OBSOLETE_
16 ERR_INPICK: string = "ERR_INPICK"
   -program already picking, can't try to pick twice at same time
17 ERR_NOTINPICK: string = "ERR_NOTINPICK"
   -program not in pick mode when trying to endfeedback or endpickorselect mode 
18 ERR_ZEROPICK: string = "ERR_ZEROPICK"
   -the size of the picking region is non-positive
19 ERR_FONTBUG: string = "ERR_FONTBUG"
   _OBSOLETE_
20 ERR_INRGB: string = "ERR_INRGB"
   -program tried to set mapcolor or writemask while in RGBmode
21 ERR_NOTINRGBMODE: string = "ERR_NOTINRGBMODE"
   -program tried to use a RGBmode routine while not in RGBmode
22 ERR_BADINDEX: string = "ERR_BADINDEX"
   -color is not within valid index range 
23 ERR_BADVALUATOR: string = "ERR_BADVALUATOR"
   -program tried to use a non-existing valuator
24 ERR_BADBUTTON: string = "ERR_BADBUTTON"
   -program tried to access an illegal button number.
25 ERR_NOTINDBMODE: string = "ERR_NOTINDBMODE"
   -program should be in dial button box mode to call current procedure
26 ERR_BADINDEXBUG: string = "ERR_BADINDEXBUG"
   _OBSOLETE_  ???
27 ERR_ZEROVIEWPORT: string = "ERR_ZEROVIEWPORT"
   -The values for {x1|y1} are larger than {x2|y2} in the definition of 
    screencoords.  Thus, the size of the viewport is too small.
28 ERR_DIALBUG: string = "ERR_DIALBUG"
   _NEVER HAPPEN_ 
29 ERR_MOUSEBUG: string = "ERR_MOUSEBUG"
   _NEVER HAPPEN_ 
30 ERR_RETRACEBUG: string = "ERR_RETRACEBUG"
   _NEVER HAPPEN_ 
31 ERR_MAXRETRACE: string = "ERR_MAXRETRACE"
   -program tried to execute more than the maximum number of retrace events
    allowed.
32 ERR_NOSUCHTAG: string = "ERR_NOSUCHTAG"
   -the tag chosen is not in the hash table or at the beginnning of the object
    set up.  It cannot be found.
33 ERR_DELBUG: string = "ERR_DELBUG"
   _OBSOLETE_
34 ERR_DELTAG: string = "ERR_DELTAG"
   -program tried to delete a nonexistent or incorrect tag
35 ERR_NEGTAG: string = "ERR_NEGTAG"
   -object tag is less than zero.
36 ERR_TAGEXISTS: string = "ERR_TAGEXISTS"
   -program tried to create an object with an index number that already exists 
37 ERR_OFFTOOBIG: string = "ERR_OFFTOOBIG"
   -offset is too large, program tried tostep beyond edge of object
38 ERR_ILLEGALID: string = "ERR_ILLEGALID"
   -program tried to make an object with an id that is negative
39 ERR_GECONVERT: string = "ERR_GECONVERT"
   _OBSOLETE_
40 ERR_BADAXIS: string = "ERR_BADAXIS"
   -Axis must be named with {x|X|y|Y|z|Z} anything else will give this error
42 ERR_BADDEVICE: string = "ERR_BADDEVICE"
   -the graphics manager couldn't be reached.  This is a fatal error.
44 ERR_PATCURVES: string = "ERR_PATCURVES"
   _OBSOLETE_
45 ERR_PATPREC: string = "ERR_PATPREC"
   _OBSOLETE_
46 ERR_CURVPREC: string = "ERR_CURVPREC"
   _OBSOLETE_
47 ERR_PUSHATTR: string = "ERR_PUSHATTR"
   -the attribute stack is full, pop or clear attribute stack first.
    check for unbalanced code.
48 ERR_POPATTR: string = "ERR_POPATTR"
   -the attribute stack is empty, something must be put there first.
    check for unbalanced code.
49 ERR_PUSHMATRIX: string = "ERR_PUSHMATRIX"
   -the matrix stack is full.  Clear or pop first.
    check for unbalanced code.
50 ERR_POPMATRIX: string = "ERR_POPMATRIX"
   -the matrix stack is empty, something must be put there first.
    check for unbalanced code.
51 ERR_PUSHVIEWPORT: string = "ERR_PUSHVIEWPORT"
   -the viewport stack is full, pop or clear viewport stack first.
    check for unbalanced code.
52 ERR_POPVIEWPORT: string = "ERR_POPVIEWPORT"
   -the viewport stack is empty, something must be put there first.
    check for unbalanced code.
53 ERR_SIZEFIXED: string = "ERR_SIZEFIXED"
   -object size is frozen, chunksize cannot change after start of object def
54 ERR_SETMONITOR: string = "ERR_SETMONITOR"
   _OBSOLETE_  {illegal monitor type?}
55 ERR_CHANGEINDEX0: string = "ERR_CHANGEINDEX0"
   -program was trying to redefine the default style of {line|cursor|font|etc},
    change index 0 to some other value.
56 ERR_BADPATTERN: string = "ERR_BADPATTERN"
   -bad size of pattern, only use 16, 32 or 64
57 ERR_CURSORNOTFOUND: string = "ERR_CURSORNOTFOUND"
   -An invalid cursor name was given, check and change value.
58 ERR_FONTHOLES: string = "ERR_FONTHOLES"
   _OBSOLETE_
59 ERR_REPLACE: string = "ERR_REPLACE"
   -program tried to replace past end of object.  
60 ERR_STARTFEED: string = "ERR_STARTFEED"
   _OBSOLETE_
61 ERR_CYCLEMAP: string = "ERR_CYCLEMAP"
   _OBSOLETE_
62 ERR_TAGINREPLACE: string = "ERR_TAGINREPLACE"
   -program tried to make a tag in replace mode. only replace graphics cmds
63 ERR_TOOFEWPTS: string = "ERR_TOOFEWPTS"
   -the program tried to create a rational curve with less than 4 points.
64 ERR_UNDEFINEDCHAR: string = "ERR_UNDEFINEDCHAR"
   _OBSOLETE_
65 ERR_BADCURSOR: string = "ERR_BADCURSOR"
   -bad size, only use 16, or 32 or default cursor types
66 ERR_NOTINCOLORMODE: string = "ERR_NOTINCOLORMODE"
   -To use getcursor, program must be in proper mode.  
   _OBSOLETE_
67 ERR_UNKNOWNCMDLENGTH: string = "ERR_UNKNOWNCMDLENGTH"
   -routine fell through the case statement for checking size of number of 
    polygon points.  New command must be same length as the old command.
68 ERR_INFEEDBACK: string = "ERR_INFEEDBACK"
   -program trying to enter feedback when in feedback mode.
69 ERR_DURINGFEEDBACK: string = "ERR_DURINGFEEDBACK"
   -program trying to exit feedback when not in feedback. 
70 ERR_DURINGSELECT: string = "ERR_DURINGSELECT"
   -system failure occurred in endpick
71 ERR_ARGMISMATCH: string = "ERR_ARGMISMATCH"
   -buffer specified in endfeedback, endpickorselect, must be same as buffer
    started with
72 ERR_TOOMANYARGS: string = "ERR_TOOMANYARGS"
   -program tried to use more than ten arguments in a function call.  This is
    a system error.
73 ERR_OBJNOTFOUND: string = "ERR_OBJNOTFOUND"
   -there is no header or no valid header in the object the program called.
    object was invalid.
74 ERR_MAKEROOMINREPLACEMODE: string = "ERR_MAKEROOMINREPLACEMODE"
   -program tried to reorganize display list entries while in replace mode.
    This is a system error.
75 ERR_UNABLETOOPEN: string = "ERR_UNABLETOOPEN"
   -The gid value given to the hardware is invalid or less than 0.  
76 ERR_QUEUINGDEVICE: string = "ERR_QUEUINGDEVICE"
   _Not implimented in the graphics library as an error message_
   -program tried to queue a nonexisting device
77 ERR_UNQUEUINGDEVICE: string = "ERR_UNQUEUINGDEVICE"
   _Not implimented in the graphics library as an error message_
   -program tried to unqueue a nonexisting device
78 ERR_GETBUTTONERROR: string = "ERR_GETBUTTONERROR"
   _Not implimented in the graphics library as an error message_
   -program tried to get a nonexisting button value
79 ERR_GETVALUATORERROR: string = "ERR_GETVALUATORERROR"
   _Not implimented in the graphics library as an error message_
   -program tried to get an invalid valuator
80 ERR_SETVALERROR: string = "ERR_SETVALERROR"
   _Not implimented in the graphics library as an error message_
   -program tried to set an invalid valuator
81 ERR_TIEERROR: string = "ERR_TIEERROR"
   _Not implimented in the graphics library as an error message_
   -program tried to tie a nonvalid device id
82 ERR_NOISEERROR: string = "ERR_NOISEERROR"
   _Not implimented in the graphics library as an error message_
83 ERR_ATTACHCURSOR: string = "ERR_ATTACHCURSOR"
   _Not implimented in the graphics library as an error message_
84 ERR_MAPDEVICE: string = "ERR_MAPDEVICE"
   _Not implimented in the graphics library as an error message_
85 ERR_WINATTACH: string = "ERR_WINATTACH"
   _Not implimented in the graphics library as an error message_
   _OBSOLETE_
86 ERR_NOSUCHWINDOW: string = "ERR_NOSUCHWINDOW"
   -program tried to switch to or close an invalid window.
87 ERR_CLOSEDLASTWINDOW: string = "ERR_CLOSEDLASTWINDOW"
   _Not implimented in the graphics library as an error message_
88 ERR_LINESTYLENOTFOUND: string = "ERR_LINESTYLENOTFOUND"
   _Not implimented in the graphics library as an error message_
89 ERR_PATTERNNOTFOUND: string = "ERR_PATTERNNOTFOUND"
   _Not implimented in the graphics library as an error message_
90 ERR_NULLWSINCLONING: string = "ERR_NULLWSINCLONING"
   _Not implimented in the graphics library as an error message_
91 ERR_USERERROR: string = "ERR_USERERROR"
   -general error message, used for anything that won't fit in other messages
92 ERR_NOFONTFOUND: string = "ERR_NOFONTFOUND"
   -the name of the font given was not found, check the list in /usr/lib/fmfonts
93 ERR_WMANIPC: string = "ERR_WMANIPC"
   -message being sent to the window manager was too large.
94 ERR_INPUTOPEN: string = "ERR_INPUTOPEN"
   _Not implimented in the graphics library as an error message_
95 ERR_RESETINGQ: string = "ERR_RESETINGQ"
   _Not implimented in the graphics library as an error message_
   -program tried to reset a nonvalid queue id
96 ERR_GETTP: string = "ERR_GETTP"
   -program tried to access an invalid textport id
97 ERR_TOOMANYSIDES: string = "ERR_TOOMANYSIDES"
   -program tried to create a polygon with more than 255 verticies.
98 ERR_INVALIDMODE: string = "ERR_INVALIDMODE"
   _Not implimented in the graphics library as an error message_
   _NEVER SEEN_
   -program tried to enter an invalid mode
99 ERR_INVALIDPARENT: string = "ERR_INVALIDPARENT"
   -there is no parent state for current window.
--
                                             daveus rattus   

                                   yer friendly neighborhood ratman

                              KOYAANISQATSI

   ko.yan.nis.qatsi (from the Hopi Language)  n.  1. crazy life.  2. life
       in turmoil.  3. life out of balance.  4. life disintegrating.  
         5. a state of life that calls for another way of living.