Difference between revisions of "Template:Mainframe I/O access methods"

From blackwiki
Jump to navigation Jump to search
imported>Ykhwong
m
 
(5 intermediate revisions by 4 users not shown)
Line 2: Line 2:
 
|name      = Mainframe I/O access methods
 
|name      = Mainframe I/O access methods
 
|state    = {{{state|uncollapsed}}}
 
|state    = {{{state|uncollapsed}}}
|title    = [[OS/360 and successors|OS/360]] I/O [[access method]]s
+
|title    = [[OS/360 and successors]] I/O [[access method]]s
|bodystyle = width:30em;float:right;margin-left:1em;margin-right:0em;
+
|listclass = hlist
  
 
|group1    = Low-level
 
|group1    = Low-level
|list1    = <div> [[Execute Channel Program|EXCP]] {{·}} [[Execute Channel Program in Real Storage|EXCPVR]] {{·}} [[Start Input/Output|STARTIO]]</div>
+
|list1    =
 +
* [[Execute Channel Program|EXCP]]  
 +
* [[Execute Channel Program in Real Storage|EXCPVR]]  
 +
* [[Start Input/Output|STARTIO]]
 
|group2    = Storage
 
|group2    = Storage
|list2    = <div>[[Execute Direct Access Program|XDAP]] {{·}} [[Basic Direct Access Method|BDAM]] {{·}} [[Basic Sequential Access Method|BSAM]] {{·}} [[Queued Sequential Access Method|QSAM]] {{·}} [[Basic Partitioned Access Method|BPAM]]</div>
+
|list2    =
<div> [[Indexed Sequential Access Method|ISAM]] {{·}} [[Virtual Storage Access Method|VSAM]] {{·}} [[Object Access Method|OAM]]</div>
+
* [[Execute Direct Access Program|XDAP]]  
 +
* [[Basic Direct Access Method|BDAM]]  
 +
* [[Basic Sequential Access Method|BSAM]]  
 +
* [[Queued Sequential Access Method|QSAM]]  
 +
* [[Basic Partitioned Access Method|BPAM]]
 +
* [[Indexed Sequential Access Method|ISAM]]  
 +
* [[Virtual Storage Access Method|VSAM]]  
 +
* [[Object Access Method|OAM]]
 
|group3    = Network
 
|group3    = Network
|list3    = [[Basic Telecommunications Access Method|BTAM]] {{·}} [[Queued Teleprocessing Access Method|QTAM]] {{·}} [[Telecommunications Access Method|TCAM]] {{·}} [[Virtual Telecommunications Access Method|VTAM]]
+
|list3    =
 +
* [[Basic Telecommunications Access Method|BTAM]]  
 +
* [[Queued Teleprocessing Access Method|QTAM]]  
 +
* [[Telecommunications Access Method|TCAM]]  
 +
* [[Virtual Telecommunications Access Method|VTAM]]
  
 
}}<noinclude>
 
}}<noinclude>
Line 21: Line 35:
 
''cleanup: This is not an article! All the article-like stuff is to be moved, i.e. to the [[Access method]] article: All the intro paragraphs as well as all the latter chapters.''
 
''cleanup: This is not an article! All the article-like stuff is to be moved, i.e. to the [[Access method]] article: All the intro paragraphs as well as all the latter chapters.''
  
The '''OS/360 I/O access methods''' are programming [[Application programming interface|API]]s on the [[OS/360]] [[mainframe computer]] [[operating system]], used by programmers to implement input/output operations on [[Data set (IBM mainframe)|data sets]] (files). They are by convention referenced to with ''...AM'' acronyms, standing for ''... Access Method''. They are now mainly used in OS/360's successor [[z/OS]].
+
The '''OS/360 and successors I/O access methods''' are programming [[Application programming interface|API]]s on the [[OS/360]] [[mainframe computer]] [[operating system]] and its [[OS/360 and successors|successors]], such as [[OS/VS1]], [[OS/VS2 (SVS)]], [[MVS]], [[OS/390]], and [[z/OS]], used by programmers to implement input/output operations on [[Data set (IBM mainframe)|data sets]] (files) and [[telecommunications network]]s. They are by convention referenced to with ''...AM'' acronyms, standing for ''... Access Method''.
  
 
== Including EXCP, EXCPVR and STARTIO in a separate class ==
 
== Including EXCP, EXCPVR and STARTIO in a separate class ==
Line 35: Line 49:
 
* [[Access method]]
 
* [[Access method]]
 
* [[Data set (IBM mainframe)]]
 
* [[Data set (IBM mainframe)]]
 +
* {{Tl|operating-system-stub}}
 +
* {{Tl|mainframe-compu-stub}}
  
 
== External references ==
 
== External references ==
Line 40: Line 56:
 
# [http://www.redbooks.ibm.com/redbooks/pdfs/sg246983.pdf IBM Redbook for system programmers]
 
# [http://www.redbooks.ibm.com/redbooks/pdfs/sg246983.pdf IBM Redbook for system programmers]
  
== See also ==
 
* {{Tl|operating-system-stub}}
 
* {{Tl|mainframe-compu-stub}}
 
  
[[Category:Computer hardware templates|{{PAGENAME}}]]
+
[[Category:Computer hardware navigational boxes]]
  
 
</noinclude>
 
</noinclude>

Latest revision as of 01:48, 14 September 2016

Usage

This template is to be used at the top of an article source code: To appear on the right top.

All the previous article like texts

cleanup: This is not an article! All the article-like stuff is to be moved, i.e. to the Access method article: All the intro paragraphs as well as all the latter chapters.

The OS/360 and successors I/O access methods are programming APIs on the OS/360 mainframe computer operating system and its successors, such as OS/VS1, OS/VS2 (SVS), MVS, OS/390, and z/OS, used by programmers to implement input/output operations on data sets (files) and telecommunications networks. They are by convention referenced to with ...AM acronyms, standing for ... Access Method.

Including EXCP, EXCPVR and STARTIO in a separate class

These are general purpose, low-level I/O device methods of access, and not "access methods" in the conventional use of this term.

In pre-MVS instances of the OS, EXCP was the lowest level method of access, and all access methods utilized EXCP.

In SVS, EXCPVR was added to enable programs which were executing in real storage to avoid much of the overhead of EXCP. This was continued in MVS.

In MVS and later instances of the OS, STARTIO replaced both forms of EXCP as the lowest level method of access. The so-called virtual access methods utilize STARTIO directly, or they have their own SVC which, in turn, utilizes STARTIO. The legacy access methods also utilize STARTIO, but go through EXCP to do so.

See also

External references

  1. History of IBM mainframes
  2. IBM Redbook for system programmers