home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / sys / sgi / bugs / 1 next >
Encoding:
Text File  |  1992-12-14  |  1.8 KB  |  44 lines

  1. Newsgroups: comp.sys.sgi.bugs
  2. Path: sparky!uunet!spool.mu.edu!umn.edu!noneuclid.geom.umn.edu!slevy
  3. From: slevy@noneuclid.geom.umn.edu (Stuart Levy)
  4. Subject: 4.0.{4,5} blankscreen(FALSE) doesn't reliably unblank screen
  5. Message-ID: <1992Dec14.230140.8608@news2.cis.umn.edu>
  6. Sender: news@news2.cis.umn.edu (Usenet News Administration)
  7. Nntp-Posting-Host: noneuclid.geom.umn.edu
  8. Organization: Geometry Center, University of Minnesota
  9. Date: Mon, 14 Dec 1992 23:01:40 GMT
  10. Lines: 32
  11.  
  12. We sometimes use the console of a VGX Iris here, running 4.0.5,
  13. for single-frame video recording.  The recording software used to call just
  14.     blanktime(0);
  15. at the beginning of a session to ensure that (a) the screen was not blanked
  16. and (b) it would stay that way.  (Since the screen is unviewable while
  17. recording, we'd often run recording jobs remotely, so the console could well
  18. have been idle long enough to go blank.)
  19.  
  20. Calling blanktime(0) alone worked under 3.3 and (I think) 4.0.1.
  21. But, when we upgraded to 4.0.4, it stopped working.  Apparently if the
  22. display was already blanked, blanktime(0) would *not* re-enable it, and we'd
  23. spend hours recording only to find black video.  So I changed that to
  24.     blankscreen(FALSE);
  25.     blanktime(0);
  26. but this was (sometimes? always?) ineffective -- the screen would remain blank. 
  27.  
  28. Often we'd then find it impossible to *unblank* the screen -- pounding on the
  29. keyboard had no effect, and we'd have to kill the X server or reboot.
  30. (Yes, /etc/config/system.glGammaVal was intact.)
  31.  
  32. After some frustrating months I stumbled on this workaround (!):
  33.     blankscreen(TRUE);
  34.     blankscreen(FALSE);
  35.     blanktime(0);
  36.  
  37. You wouldn't think asking the screen to go blank would be essential to
  38. unblanking it, but so it goes.  Don't know if this always works, but
  39. it sometimes does.
  40.  
  41.     Stuart Levy, Geometry Center, University of Minnesota
  42.     slevy@geom.umn.edu
  43.  
  44.