home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / arch / 11917 < prev    next >
Encoding:
Internet Message Format  |  1992-12-23  |  5.5 KB

  1. Path: sparky!uunet!olivea!decwrl!deccrl!news.crl.dec.com!news!nntpd.lkg.dec.com!ryn.mro4.dec.com!news
  2. From: pjdm@chmeee.enet.dec.com (Peter Mayne)
  3. Newsgroups: comp.arch
  4. Subject: Re: <None> (Should be Open Systems, bloody NEWS system...)
  5. Message-ID: <1992Dec23.212321.26522@ryn.mro4.dec.com>
  6. Date: 23 Dec 92 21:23:21 GMT
  7. References: <1992Dec22.011414.21727@ryn.mro4.dec.com> <id.CD1W.3Q2@ferranti.com> <1992Dec23.050719.4047@ryn.mro4.dec.com> <id.CG2W.R8A@ferranti.com>
  8. Sender: news@ryn.mro4.dec.com (USENET News System)
  9. Reply-To: Peter.Mayne@cao.mts.dec.com
  10. Organization: Digital Equipment Corporation
  11. Lines: 125
  12.  
  13.  
  14. In article <id.CG2W.R8A@ferranti.com>, peter@ferranti.com (peter da silva) writes:
  15.  
  16. >That's right. The UNIX programming model. The point is that the UNIX API is
  17. >very high level, and can be modified to provide any capability I've ever
  18. >heard of without breaking it. There is NO excuse for any new operating
  19. >system after about 1984 or 85 to use anything lower level. It increases the
  20. >cost of software design, increases the cost of education and training, and
  21. >decreases the amount of commonly available high quality software.
  22.  
  23. OK, try this. VMS has something called an AST (Asynchronous System Trap) which
  24. is similar to a user-mode interrupt. This may occur at any time: for instance,
  25. an asynchronous I/O can call an AST routine when the I/O completes. When the
  26. AST routine completes, control returns to the code that was executing at the
  27. time the AST occurred. (The analogy in NT is the APC, or Asynchronous
  28. Procedure Call.)
  29.  
  30. Now, much of the run-time stuff in UNIX is non-reentrant. In particular, the 
  31. use of errno springs to mind. If the AST (or APC) was introduced into the
  32. UNIX model, how can I use these non-reentrant routines safely in an AST
  33. routine without screwing things up?
  34.  
  35. >There is nothing in Windows, Windows NT, or OS/2 that requires a basic
  36. >system interface other than UNIX-style I/O. The only reason for even
  37. >considering anything else for a conventional operating system is simple
  38. >cynical marketing decisions.
  39. >
  40. >> >> ACLs on objects.
  41. >
  42. >> >Andrew has this, without abandoning the UNIX programming model.
  43. >
  44. >> I presume you mean the Andrew file system. But we're talking about operating
  45. >> systems, not file systems.
  46. >
  47. >But the UNIX operating system interface is centered on the file system.
  48.  
  49. But that doesn't mean that I can put an ACL on a UNIX operating system object.
  50.  
  51. >> >> Quotas.
  52. >
  53. >> >I've seen both hierarchy and user quotas.
  54. >
  55. >> What are hierarchy quotas?
  56. >
  57. >> BTW, I'm not talking about file system quotas, I mean operating system quotas.
  58. >
  59. >You mean like ulimit?
  60.  
  61. Get the process's file size limit.
  62. Set the process's file size limit.
  63. Get the maximum possible break value.
  64. NT and VMS people might have a rather more pervasive idea of quotas.
  65. What are hierarchy quotas?
  66.  
  67. >> >> >Why did Microsoft have to create
  68. >> >> >a completely new API from scratch, and implement it in such a way that
  69. >> >> >programs using it are entirely insulated from their UNIX API environment
  70. >> >> >(POSIX shell)?
  71. >
  72. >> >> Which new API?
  73. >
  74. >> >Win32.
  75. >
  76. >[and Win16, for that matter]
  77. >
  78. >> Because:
  79. >> (1) POSIX 1003.1 does not address the many areas that Win32 does.
  80. >
  81. >Where it doesn't it can be trivially extended to do so.
  82.  
  83. Including my example above?
  84.  
  85. >> (2) POSIX 1003.1 is not a UNIX API.
  86. >
  87. >Yes it is.
  88.  
  89. Why? It is similar to the UNIX API you mention, but it is also
  90. available on non-UNIX operating systems. (NT and VMS, for example.)
  91.  
  92. >> (3) Win32 is actually based on the Win16 API (and therefore isn't written
  93. >> from scratch), because it makes Win16 programs easier to port, and Microsoft,
  94. >> being a nasty commercial company, recognised that that makes it easier
  95. >> to get new software onto NT (cf porting from Win16 to OS/2).
  96. >
  97. >And the Win16 API is equally broken, with no redeeming features, and no
  98. >excuse for not being UNIX-based.
  99.  
  100. >Of course Microsoft may simply be putting the 1003.1 support in purely as
  101. >a marketing tool, without any intention of making it in any way useful.
  102. >That would explain it.
  103.  
  104. :-)
  105.  
  106. >> Actually, the filestore name space is mapped into the object name space, which
  107. >> seems to be a much more sensible arrangement to me.
  108. >
  109. >So, can I access any arbitrary object that a POSIX program might want to use
  110. >via the filestore name space? If not, that's awfully short-sighted of
  111. >Microsoft, because that's the way UNIX is progressing.
  112.  
  113. No, because the filestore name space is at the botton of the hierarchy.
  114. Direct object name space access would require access to non-POSIX routines,
  115. and that's a no-no.
  116.  
  117. UNIX might access everything through the filestore, but not all other operating
  118. systems do. Better? Worse? Different. Especially when you want to change the
  119. format of the filestore. Another example from NT: a file in a file system is
  120. just an object in the object name space. When a file's pathname is given to
  121. the object name parser, the parser will parse the pathname down to the file
  122. system's node, then hand over parsing to the file system's parser. This
  123. would allow a file system with completely different syntax to be inserted
  124. with no trouble. What happens to a filestore oriented operating system
  125. when a completely different file system is used?
  126.  
  127. >-- 
  128. >Peter da Silva                                            `-_-'
  129. >Ferranti International Controls Corporation                'U` 
  130. >Sugar Land, TX  77487-5012 USA
  131. >+1 713 274 5180                            "Zure otsoa besarkatu al duzu gaur?"
  132.  
  133. PJDM
  134. --
  135. Peter Mayne                     | My statements, not Digital's.
  136. Digital Equipment Corporation   |
  137. Canberra, ACT, Australia        | "AXP!": Bill the Cat
  138.