home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / arch / 8229 < prev    next >
Encoding:
Text File  |  1992-07-23  |  1.8 KB  |  70 lines

  1. Newsgroups: comp.arch
  2. Path: sparky!uunet!uchdcc!pchris
  3. From: pchris@dcc.uchile.cl (Chris Perleberg)
  4. Subject: SparcStation Questions
  5. Originator: pchris@pehuen
  6. Sender: usenet@dcc.uchile.cl (Network News)
  7. Message-ID: <1992Jul23.163423.19061@dcc.uchile.cl>
  8. Date: Thu, 23 Jul 1992 16:34:23 GMT
  9. Reply-To: pchris@dcc.uchile.cl
  10. Organization: Universidad de Chile, Depto. de Ciencias de la Computacion
  11. Lines: 58
  12.  
  13.  
  14. Looking through the /usr/include/sun4/param.h file on some Sun Sparcs, I came
  15. across a few things I could use some help on:
  16.  
  17. > /
  18. >  * Define VA_HOLE for machines that have a hole in the virtual address space.
  19. >  */
  20. > #if defined(SUN4_260) || defined(SUN4_110) || defined(SUN4_330)
  21. > #define VA_HOLE
  22. > #else
  23. > #undef VA_HOLE
  24. > #endif SUN4_260 || SUN4_110 || SUN4_330
  25.  
  26. What size is this virtual address hole on the Sparcs listed above?  Does this
  27. mean these Sparcs do not have a full 32 bit address space (and others do), so
  28. some programs will run on some Sparcs and not on others?
  29.  
  30. > /*
  31. >  * Define BCOPY_BUF if we could run on machines that have a bcopy buffer.
  32. > */
  33. > #ifdef SUN4_470
  34. > #define BCOPY_BUF
  35. > #else
  36. > #undef BCOPY_BUF
  37. > #endif SUN4_470
  38.  
  39. What does this bcopy buffer on the 470 look like?  What size is it?
  40.  
  41. > /*
  42. >  * Define IOC if we could run on machines that have an I/O cache.
  43. >  */
  44. > #ifdef SUN4_470
  45. > #define IOC
  46. > #else
  47. > #undef IOC
  48. > #endif SUN4_470
  49.  
  50. What does this I/O cache on the 470 look like?  What size is it?
  51.  
  52. > /*
  53. >  * Define the MMU_3LEVEL symbol if we could run on a machine with
  54. >  * a three level mmu.   We also assume these machines have region
  55. >  * and user cache flush operations.
  56. >  */
  57. > #ifdef SUN4_470
  58. > #define MMU_3LEVEL
  59. > #else
  60. > #undef MMU_3LEVEL
  61. > #endif SUN4_470
  62.  
  63. What does this 3 level mmu on the 470 look like?  What does the normal mmu
  64. on the other Suns look like?
  65.  
  66. Thanks for any help,
  67.  
  68.     Chris Perleberg
  69.     pchris@dcc.uchile.cl
  70.