Mercurial > hg > Members > kono > nitros9-code
comparison defs/pipedefs @ 516:6f1799317d2b
Consolidated pipedefs
author | boisy |
---|---|
date | Thu, 10 Oct 2002 15:06:55 +0000 |
parents | c07686556109 |
children | 0a678473d5cf |
comparison
equal
deleted
inserted
replaced
515:87fe15316ccc | 516:6f1799317d2b |
---|---|
1 ifeq PIPEDEFS | 1 IFEQ PIPEDEFS |
2 | 2 |
3 PIPEDEFS set 1 | 3 PIPEDEFS set 1 |
4 | |
5 * | |
6 * Copyright 1988 by Microware Systems Corporation | |
7 * All Rights Reserved | |
8 * | |
9 * Named pipe equates by Burke & Burke. | |
10 * All rights assigned to Microware Systems Corporation. | |
11 * | |
12 * This file contains proprietary information of Microware Systems | |
13 * Corporation. Persons accessing this file will be held strictly | |
14 * accountable for their use of the information herein. | |
15 * | |
16 | |
17 * | |
18 * OS9 Level 2 Pipe Definitions | |
19 * | |
20 * Modification History | |
21 * -------------------- | |
22 * | |
23 * Date Who Description | |
24 * -------- --- ----------------------------------------- | |
25 * 12/03/88 cjb Coded from new PIPEMAN comments | |
26 * | |
4 | 27 |
5 nam PipeDefs | 28 nam PipeDefs |
6 ttl OS-9 Pipe Definitions | 29 ttl OS-9 Pipe Definitions |
7 | 30 |
8 * OS-9 Pipe Definitions | 31 * OS-9 Pipe Definitions |
64 * to make room for the pipe name. | 87 * to make room for the pipe name. |
65 * | 88 * |
66 org (PD.OPT+1) | 89 org (PD.OPT+1) |
67 PD.ESiz rmb 1 ;Size of each queue element | 90 PD.ESiz rmb 1 ;Size of each queue element |
68 PD.ECnt rmb 2 ;Max. elements in queue (initial position) | 91 PD.ECnt rmb 2 ;Max. elements in queue (initial position) |
92 IFGT Level-1 | |
93 org (PD.OPT+3) | |
94 PD.Name rmb NameMax | |
95 ENDC | |
69 | 96 |
70 * | 97 * |
71 * Device Descriptor definitions | 98 * Device Descriptor definitions |
72 * | 99 * |
73 IT.PDC equ $12 ;Pipe device class (like IT.DTP, IT.DVC) | 100 IT.PDC equ $12 ;Pipe device class (like IT.DTP, IT.DVC) |
75 rmb 1 ;Leave room for device class | 102 rmb 1 ;Leave room for device class |
76 IT.ESiz rmb 1 ;Size of each queue element | 103 IT.ESiz rmb 1 ;Size of each queue element |
77 IT.ECnt rmb 2 ;Max. elements in queue (initial position) | 104 IT.ECnt rmb 2 ;Max. elements in queue (initial position) |
78 | 105 |
79 * End of pipedefs | 106 * End of pipedefs |
80 endc | |
81 | 107 |
108 ENDC | |
109 |