FLEX: a Tool for Building E Cient and Flexible Systems 1 Overview

Total Page:16

File Type:pdf, Size:1020Kb

FLEX: a Tool for Building E Cient and Flexible Systems 1 Overview FLEXATo ol for Building Ecient and Flexible Systems John B Carter Bryan Ford Mike Hibler RavindraKuramkote Jerey Law Jay Lepreau Douglas B Orr Leigh Stol ler and Mark Swanson University of Utah Department of Computer Science Abstract Mo dern op erating systems must supp ort a wide variety of services for a diverse set of users Designers of these systems face a tradeo b etween functionality and p erformance Systems likeMachprovide a set of general abstractions and attempt to handle every situation which can lead to p o or p erformance for common cases Other systems such as Unix provide a small set of abstractions that can b e made very ecient at the exp ense of functionalityWe are implementing a exible system building to ol FLEX that allows us to supp ort a p owerful op erating systems interface eciently by constructing sp ecialized mo dule implementations at runtime FLEX improves the p erformance of existing systems by optimizing interpro cess communications paths and relo cating servers and clients to reduce communications overhead These facilities improve the p erformance of Unix system calls on Mach from Furthermore FLEX can dynamically extend the kernel in a controlled fashion which gives user programs access to privileged data and devices not envisioned by the original op erating system implementor Overview Op erating systems consist of a collection of interrelated entities that provide a variety of services Beyond this general description the sp ecics of individual op erating systems varies widely dep ending on the decisions made by each systems designers We b elieve that there is no optimal organization b ecause the optimal design is dep endent on a particular systems resources and the needs of its clients No single op erating system structure can p erform optimally in a wide varietyofenvironments The most imp ortant asp ect of an op erating system from the users p oint of view is its application programming interface denition As long as the op erating system eciently supp orts its interface and protection requirements it is irrelevant whether this is provided via functions found at known lo cations in the user address space eg MSDOS via traps to the kernel eg Unix via remote pro cedure calls RPCs to server pro cesses eg much of Mach or any combination of these options To exploit the exibility that this p ersp ectiveprovides we are developing the FLEX system building to ol FLEX is a coarsegrained system building service that allows systems to b e dynamically constructed using the implementation most appropriate to a given situation In this context a system is an entity that interacts with the op erating system plus the op erating system itself FLEX provides functionalitytoan op erating system similar to but more p owerful than that provided to a programming system by a linker FLEX works by reading modules manipulating them as sp ecied by mo dule manipulation les and writing the resulting executable either to a users address space or to a le for later use The activeentityin FLEX is the OMOS server which runs as a privileged pro cess It p erforms several functions including generating relo cating and binding ob ject les caching relo cated ob ject les for later use managing address spaces and interacting with the kernel to add or delete kernel routines on demand FLEX can improvean op erating system in two dierentways i by improving the p erformance of existing system implementations and ii by dynamically extending op erating system functionality One of the goals of FLEX is to allow the implementations of existing systems to b e improved without requiring their comp onent mo dules or interfaces to change FLEX uses interface denition sp ecications to dene how individual system comp onents interact with one another This sp ecication allows FLEX to sp ecialize instances of a system resource or communications channel to a particular situation For example when a client program rst connects to a particular service FLEX can determine where the server is phys ically lo cated and provide the most ecientinterpro cess communications mechanism for this clientserver interaction If the server is on a remote machine then RPC is appropriate while if the client and server have b een placed in the same address space a capabilityof FLEX discussed b elow then some form of pro cedure call is preferable Similarlyif FLEX is able to determine that most of the interactions with a server are coming from a particular client it can intervene to make those interactions less exp ensive eg by mapping the clientinto the server address space in a controlled manner FLEXs other asp ect is its ability to extend or mo dify the op erating system dynamically in a mostly transparentway FLEX can mo dify the op erating system on the y by binding routines to the kernel on a p er client basis This abilityallows users or op erating systems designers to add or mo dify kernel functionality The means by which this can b e done safely is discussed in the following section This feature of FLEX can b e exploited in a number of ways For example this might b e used to give an unprivileged user program direct control over its physical memory so that it can use a paging algorithm tuned to its particular access b ehavior or realtime needs A long term goal of this asp ect of FLEX is to allow op erating systems researchers and vendors to distribute functional mo dications or extensions to existing op erating systems to sites without access to the op erating system source co de Design of FLEX FLEXs p ower comes from OMOSs ability to manipulate mo dules in complex ways its full access to interface denitions its ability to derive sp ecialized implementations of mo dules and their interactions and its gener alized constraint system for managing address spaces A mo dule is an entitycontaining a number of symbols or linkage p oints and optionally a fragment of executable co de in the machine language of the target sys tem Most mo dules pro cessed by FLEX are normal relo catable ob ject les pro duced by a compiler but there are also several kinds of interface denition mo dules FLEX uses a Lisplike mo dule manipulation language develop ed as part of the Jigsaw framework to sp ecify how particular mo dules are to b e combined This language provides a complete implementation of mo dule name manipulation muchmorepowerful than exist ing linkers Augmented with detailed knowledge of communication mechanisms and corresp onding argument semantics this allows FLEX to transparently sp ecialize intermo dule communication Within a mo dule a symb ol can either b e a declaration or a reference Declarations are most often asso ciated with co de fragments that implement a particular system service while references are most often asso ciated with co de fragments that invoke a particular system service FLEX is able to improveupon existing system implementations by transparently substituting a particular declaration of a symb ol with a functionally equivalent implementation that provides the same interface and semantics The details of the lowlevel binding mechanism are b eyond the scop e of this pap er but are describ ed elsewhere For example if a client pro cess contains a reference to a system call that normally is implemented as an RPC to a userlevel server pro cess whichishowmany Unix system calls are emulated in Mach it can replace the RPC interface with an LRPClikeinterface if it recognizes that the server is always lo cal LRPC exploits memory sharing and thread migration to reduce the overhead of an RPC but it is only p ossible between two pro cesses on the same machine Implementing the full LRPC mechanism requires mo dications to the Mach thread mo del to supp ort thread migration Similarly if the service is currently b eing provided by a server that has b een loaded into the kernel address space FLEX can replace the RPC with a trap that directly invokes the desired service These examples demonstrate the p otential that FLEX has for improving the qualityofexisting systems In addition to b eing able to sp ecialize interfaces FLEX is able to dynamically extend the op erating system kernel or relo cate services in a transparentway The simplest example of how this can b e accomplished arises when FLEX detects that a desired service is not currently b eing provided as can o ccur if the server crashes or cho oses to quit due to inactivity In this case FLEX can restart the appropriate server An incremental improvementuponthisisthat FLEX can start a new instance of the server that is sp ecialized to the clients needs and make the appropriate binding FLEX go es b eyond these simple mechanisms by allowing mo dules to b e relo cated b etween address spaces to provide more ecientintermo dule interactions For example if FLEX observes or is informed that a particular userlevel service is used frequently and the server is trusted it can bind the service into the kernel and replace calls to that server with traps This use of FLEX blurs the distinction b etween macrokernels and microkernels whichwe b elieve should b e the case The microkernel organization improves co de mo dularityandprovides an easy to understand design philosophy but when a rigid enforcement of the microkernel philosophy impacts p erformance without signicant gains it should b e relaxed transparently to regain the p erformance b enets of a macrokernel system Enabling optimization of more interactions FLEX can transparently load clients and trusted servers in a single address space while protecting the servers from client accesses
Recommended publications
  • S83G 7789 08.Pdf
    IBM Personal Computer 300/700 Series HMM Book Cover COVER Book Cover -------------------------------------------------------------------------- IBM Personal Computer 300 Series (Type 65XX) 700 Series (Type 68XX) Hardware Maintenance Manual February 1997 We Want Your Comments! (Please see page 2.33) Document Number S83G-7789-08 Part Number 84H7174 -------------------------------------------------------------------------- +--- Note ---------------------------------------------------------------+ ¦ ¦ ¦ Before using this information and the product it supports, be sure to ¦ ¦ read the general information under "Notices" in topic 2.36 . ¦ ¦ ¦ +------------------------------------------------------------------------+ Ninth Edition (February 1997) The following paragraph does not apply to the United Kingdom or any country where such provisions are inconsistent with local law: INTERNATIONAL BUSINESS MACHINES CORPORATION PROVIDES THIS PUBLICATION "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Some states do not allow disclaimer of express or implied warranties in certain transactions, therefore, this statement may not apply to you. This publication could include technical inaccuracies or typographical errors. Changes are periodically made to the information herein; these changes will be incorporated in new editions of the publication. IBM may make improvements and/or changes in the product(s) and/or the program(s) described in this publication at any time. It is possible that this publication may contain reference to, or information about, IBM products (machines and programs), programming, or services that are not announced in your country. Such references or information must not be construed to mean that IBM intends to announce such IBM products, programming, or services in your country. Requests for technical information about IBM products should be made to your IBM reseller or IBM marketing representative.
    [Show full text]
  • Non-Unix OS History
    1954 Non Unix family tree and Timeline Version 0.4.0 1956 Copyright 2003, 2004, 2007 Patrick J C Mulvany GM OS 1955 1957 SAGE 1957? 1958 SABER FMS 1958 1958 Late 1950's SOS 1959 1960 1960 IBM 1410/7010 OS Early 1960's CTSS 1961-1962 1962 IBSYS MCP PDP-1 OS DECtape 1962 Early 1960's (B5000) 1962 Library System Basic Executive System 1962 Early 1960's SABRE B1 1962-64 PDP-6 Monitor Early 1960's MCP 1964 EXEC I 1964 TOS (B5500) 1964 MCP Early 1960's 1964 AOS B2 (B6500) Tops-10 1.4 Admiral Early 1960's DOS 1969? 1964 Early 1960's 1965 OS/360 STSS Multics (BOS, TOS,DOS) 1965? 1965 B3 1965 EXEC II Early 1960's CP-40 MCP Early 1960's Tops-10 1.9 MTS Atlas I Supervisor 1966 (CP-67) (B5700) MS/8 B4 1966 1966 1966 1966 1966-1996 Mid 1960's MCP Early 1960's (B6700) CAL OS/PCP 1972? CHIPPEWA BPS/360 CP/CMS OS/MVT Tops-10 2.18 ITS WAITS EXEC 3 Late 1960's Late 1960's Late 1960's Late 1960's 1967 1967 MCP 1967 1967 1967 Late 1960's (B5900) 1968 PARS Tops-10 3.27 TSS-8 George 1 1968 MCP SCOPE TDOS IDA 1968 MCP 1968 1967-1968 Late 1960's (B2500/B3500) Late 1960's Late 1960's Late 1960's (B7700) EXEC 4 Late 1960's VMOS George 2 ACP v4 MCP Tops-10 4.50 TENEX Unix ACP EXEC 8 Late 1960's SOS OS/MFT MSS 4.0 Late 1960's 1969 MCP (B1500) 1969 1969 1969 1969 Late 1960's Late 1960's? MCP 10/1969 (B6800) (B2700/B3700) Tops-10 4.72 1969 MSS 5.0 George 3 1970 12/1969 Late 1960's 1970 MCP Tops-10 5.01 DOS/Batch 11 MSS 6.0 MCP MCP (B1700) 1970 1970 3/1970 (B7800) (B2800/B3800) 1972? MUMPS MSS 7.0 George 4 DOS 3/1970 Late 1960's TSO 1970 MSS 8.0 1970's? MCP MCP RSX-15
    [Show full text]
  • 80 Microcomputing Magazine November 1984
    Allwrite: A World Class Word Processo A CWC/I PUBLICATION Utili-Keys Unlock the Power Of Your TRS-80 Input Screens The Easy Way 14 New Commands For Cassette Basic Garbage Collection: Causes and Cures Editext: A Hybrid Line/Screen Editor Streamlined Editing In Model 4 Basi MAD: A Model 4 Address Mapper Knock The Socks Off Your Beef up Your Add a Low-Cost ^^ Color Computer with Personal Printer Radio Shack Accessories High-performance Using somebody else's home com- printing from your 1 puter can be a pretty frustrating Color Computer is fast thing. Tiny memories, second-rate and easy with the graphics and limited accessories DMP-110 dot-matrix take all the fun out of programming printer (#26-1271, p*^ and video games. That's why seri- $399.00) from Radio ous computer hobbyists enjoy Shack. The DMP-110 Radio Shack's Color Computer so gives you proportionally spaced or correspondence-quality ' much. No other color computer ex- characters for letters and reports at a swift 25 characters pands to do so many things. per second— about 200 words per minute! The DMP-110 Get Room to Grow With Disk Storage prints mono-spaced characters in standard, elite or con- densed fonts at 50 characters per second: fast enough to Add a single Radio Shack disk drive to your Color Com- print homework or reports in just minutes. The DMP-110 l»i'l • also offers all the print capabilities you need: italic charac- 5 1 /4" diskette. That s 156K of disk storage for $50 less ters, super and subscripts, underlining and microfonts.
    [Show full text]
  • Version 2.0 Appllcatfon Development Software System Copyright ,C) 1983
    D a t a F I e X Version 2.0 Appllcatfon Development Software System Copyright ,c) 1983. 1984 Data Access Corporation DATA ACCESS CORPORATION 8525 SW 129 1"ermce Miamb Florida 33156 USA Manual Revision Date; 07/18/84 COPYRIGHT NOTICE DataF1ex is copyrighted (C) 1981. l982p and 1983 by Data Access Corporation. All rights under this copyright are reserved worldwide. DataF1ex, including this manuañ which is an integral part of DataFlex, may not be reproduced, transmjttedg stored in any manner in a retrieval system in any form or through any means, e1ectrica17 mechanica'L opticab manual or otherwise without the express written permission of Data Access Corporatiom 8525 SW 129 Terraceg MiamL FL 33156, USA. DISCLAIMER Data Access Corporation makes no representations or warrantiesn express or implied, With respect to DataFlex, this manuab or any Data Access Corporation productg including but not limited to warranties of merchantability or fitness for a particular purpose. Data Access Corporation reserves unto itself the right to make periodic changes, enhancements, revisions and alteration of any kind to DataFlex and/or its manual without obligation to notify any person, institution or organization of such changes, enhancements, revisions and alterations to the product. TRADEMARKS DataFlex and Flex-keys are trademarks of Data Access Corporation. The trademarks and registered trademarks of other companies are referred to at various points throughout this manual, annotated with an asterfsk (*). The owners of the trademarks are listed below: MBASIC Microsoft CBASIC Digital Research CP/M Digital Research MP/M Digital Research WordStar MicroPro International MailMerge MicroPro International Pasca1/MT+ Digital Research dBASE II Ashton-Tate, Inc.
    [Show full text]
  • Subject: MSX2 Compatible Computer Project Posted by Sergey on Tue
    Subject: MSX2 Compatible Computer Project Posted by Sergey on Tue, 23 Jan 2018 21:12:41 GMT View Forum Message <> Reply to Message Hi, I'd like to build an MSX2 compatible computer. I'd like to share some of my ideas, and to get opinion of the forum members. My goals/wishes for this project: Follow MSX/MSX2 standards as close as possible 128 KiB (or more) RAM Yamaha V9938 VDP, 128 KiB Video RAM, composite and component outputs, with optional RGB output (header) The main purpose would be running MSX/MSX2 games. With CP/M, FUZIX, possibly MSX-DOS support being the secondary goal Two cartridge slots for game cartridges and hardware add-ons (e.g. MSX music, disk controller) Use CBIOS Implement a real keyboard. Likely using Cherry MX keys, and standard keycaps (a microcontroller based PS/2 adapter would be a backup option) Design modularity and form factor options (which one would you prefer?): A single board with the entire computer implemented on it. Should be about 200 mm x 160 mm in size. Pros: most compact way, Cons: no modularity at all ECB based system. We already have an MSX (not MSX2) video board, that might somewhat help with developing this project, although a new V9938 based board would have to be implemented. Pros: individual boards can be used for other (non MSX) ECB systems. Cons: more expensive: DIN 41612 connectors, additional bus buffers, etc. Also not as compact Non-ECB backplane based system. Potentially built using 100 mm x 100 mm boards. Pros: cheaper than ECB, no need to adhere to ECB standard, can use some pins for MSX-specific signals (slot select, chip selects).
    [Show full text]
  • IBM 4690 Store System Enhanced with New Tivoli Manager for Retail
    Software Announcement September 28, 1999 IBM 4690 Store System Enhanced with New Tivoli Manager for Retail Overview Key Prerequisites At a Glance Tivoli Manager for Retail integrates Hardware Prerequisites: IBM′s 4690 Store System with the Tivoli Manager for Retail Tivoli Management Framework. As • Any hardware supported by 4690 complements IBM′s 4690 Store a result, event integration, OS and any Windows NT System by centralizing and processing response and notification platforms supported by Tivoli managing events and responses. are combined and automated in a Framework 3.6.1 or higher powerful new system. What does Tivoli Manager for Retail: Software Prerequisites: this mean to you? Being able to filter • Centralizes and stores out irrelevant events will help your • Windows NT V4.0 Operating events/responses operations staff to focus on matters System that are important to your business • Manages events/responses in without wasting a lot of time and • Tivoli Framework 3.6.1 or higher real time effort. • Tivoli Enterprise Console 3.6.1 or • Enables you to filter out Here′s how it works. Tivoli Manager higher irrelevant events for Retail provides event • • Enables notification of controller management for the IBM 4690 Store TCP/IP communication protocol failover System. Events that are logged on on each controller the 4690 controllers by the 4690 • 4690 Operating system V1 with • Works with IBM 4690 Operating Operating System or by applications CD 9920 and the TCP/IP System, IBM Point of Sale 4690 running on the 4690 can be communication protocol on each Controllers and Tivoli forwarded to the Tivoli Enterprise controller Enterprise Consoles Console (TEC) for processing.
    [Show full text]
  • IBM Flex System FC5054 4-Port 16Gb FC Adapter User's Guide
    IBM Flex System FC5054 4-Port 16 Gb FC Adapter User’s Guide IBM Flex System FC5054 4-Port 16 Gb FC Adapter User’s Guide Note: Before using this information and the product it supports, read the general information in Appendix B, “Notices,” on page 17, the Safety Information and Environmental Notices and User Guide documents on the IBM Notices for Network Devices CD, and the Warranty Information document that comes with the product. First Edition, August 2013 © Copyright IBM Corporation 2013. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Copyright © 2013 Emulex. All rights reserved worldwide. This document refers to various companies and products by their trade names. In most, if not all cases, their respective companies claim these designations as trademarks or registered trademarks. This information is provided for reference only. Although this information is believed to be accurate and reliable at the time of publication, Emulex assumes no responsibility for errors or omissions. Emulex reserves the right to make changes or corrections without notice. This report is the property of Emulex and may not be duplicated without permission from the Company. Table of Contents Safety ................................................................................................v Chapter 1.IBM Flex System FC5054 4-port 16 Gb FC Adapter............................1 Related documentation..............................................................................1
    [Show full text]
  • CPM-Flex Pro™
    Polymer-Modified CPM-Flex Pro ™ 920 Crack Prevention Mortar PRODUCT DESCRIPTION When setting glass tile over 6" x 6" CERAMIC TILE SUBSTRATES, CPM- FLEX PRO™ 920 is formulated for superior (15 x 15 cm) or when setting dimensional RESILIENT FLOORING OR flexibility and bond strength for the most stone larger than 12" x 12" (30 x 30 cm), PLASTIC LAMINATES demanding tile installation requirements. contact Technical Services for recommendations Plywood floors must be built to industry CPM- FLEX PRO 920 uses a blend of polymers regarding subfloor deflection requirements. standards. Resilient flooring or plastic and inorganic chemicals to increase the APPLICABLE STANDARDS laminates must be well bonded, clean and contact between the mortar and tile for Conforms to requirements for latex-Portland free of all contaminates. Roughen the surface excellent bonds on a wide variety of new and cement mortars found in ANSI A118.4 and by sanding or scarifying, rinse and allow to remodeling substrates. Extended open and A118.11. dry. Do not sand flooring containing asbestos. adjustment times and a creamy consistency PACKAGING For existing well-bonded ceramic tile, provide excellent handling characteristics. 50 lb. (22.7 kg) multi-wall bags. mechanically abrade with carborundum stone. It offers up to 20% more coverage than Rinse and allow to dry. When sanding we other thin-sets. Isolates cracks up to 1/8" recommend the use of an approved respirator. C (3.2 mm). Exceeds ANSI A118.4 and A118.11 P INSTALLATION MOVEMENT JOINTS without the need for additives. PREPARATORY WORK Expansion joints, control joints and cold M DIRECTIONS Detailed installation procedures may be found joints should never be bridged with setting in the T.C.A.
    [Show full text]
  • IBM PC 1994 to 2000 - Withdrawn November 2000 - Version 212 IBM PC 300-486 Models - Withdrawn
    PC Institute IBM Personal Systems Reference IBM PC 1994 to 2000 - withdrawn November 2000 - Version 212 IBM PC 300-486 models - withdrawn IBM PC Series 300: Memory SVGA Slots available (in bits) Available Diskette Write-back in MB; controller; 16 ISA/32 VESA/32 PCI IBM date Disk: std-max internal CPU / Upgrade L2 cache std / max memory Total bays Std Direct Type-model ms seek / interface MHz MHz std / max all 70 ns std / max ↓ 3.5" | 5.25"features Price 1 3 slot x 3 bay; VL/ISA ✂ 330-486 6571-LOA d opt: up to 2 IDE 486DX2-66/33 DX4/P24T 0KB 256 4 /128 Cirrus Lo 3/1/0 ❘ $ 949➷Jul 95 ✂ 330-486 -L5B d 540M-2.0G 12 IDE 486DX2-66/33 DX4/P24T 4 /128 GD5430 3/1/0 Àª ❘@ W 1064➷Apr 95 ✂ 330-486 " -L5C d 540M-2.0G 12 IDE 486DX2-66/33 DX4/P24T " " 4 /128 VL-Bus 3/1/0 ÀÀ ❘@ W 1064➷Jul 95 ✂ 330-486 " -L5F d 540M-2.0G 12 IDE 486DX2-66/33 DX4/P24T " " 4 /128 1 / 1 MB 3/1/0 ÀÀ ❘@ W 1236➷Apr 95 ✂ 330-486 " -L5K d 540M-2.0G 12 IDE 486DX2-66/33 DX4/P24T " " 8 /128 " 3/1/0 ÀÀ ❘@ 3 1236➷Jul 95 ✂ 330-486 " -WOA d opt: up to 2 IDE 486DX4-100/33 P24CT " " 4 /128 " 3/1/0 ÀÀ ❘@ 1064➷Jul 95 ✂ 330-486 " -W5F d 540M-2.0G 12 IDE 486DX4-100/33 P24CT " " 8 /128 " 3/1/0 Àª ❘@ 3 1351➷Apr 95 ✂ ÀÀ ❘@ ➷ 330-486 " -W5K d 540M-2.0G 12 IDE 486DX4-100/33 P24CT " " 8 /128 3/1/0 ÀÀ @ 3 1351 Jul 95 3 slot x 3 bay; PCI/ISA ✂ 330-486 6573-LOA d opt: up to 2 IDE 486DX2-66/33 DX4/P24T 0KB 256 4 /128 GD5430 3/0/2 ❘ 1035➷Jul 95 ✂ 330-486 -L5F d 540M-2.0G 12 IDE 486DX2-66/33 DX4/P24T " " 8 /128 1 / 1 MB 3/0/2 Àª ❘@ 3 1323➷Feb 95 ✂ 330-486 " -L5K d 540M-2.0G 12 IDE 486DX2-66/33 DX4/P24T
    [Show full text]
  • Aided Design
    No. 45 January-February 1989 $3.95 THE MICRO TECHNICAL J 0 URN A L Computer Aided Design Thinking of setting up shop as a hardware designer? Schematic capture and board layout tools will not only make you more efficient, they'll really put you in demand. CAD In A Consulting page 8 Business Choosing PCB Layout page 16 Systems · Building Circuits With page 22 Your Computer And More ... Secrets Of Optimization page 26 What to expect from a code optimizer (and what to watch out for). Finding Bargains In The page 34 .~_,_.,. Surplus Market Karl Lunt tells us where he finds the real hardware bargains. What he watches for and what he watches out for. Plus: The Turbo Debugger Arrives 50 MASM5.1 54 And Much, Much, More 1 2 o 74470 19388 3 #1 PROGRAMMABLE EDITOR • Best Multi-Level Undo • Regular Expressions • Pop-Up ASCII Table • Pull-Down Menus • Compiler Support • Column Blocks Until now, if you wanted the best Undo, the best compiler sup­ port, regular expressions and column blocks you chose BRIEpM. If you wanted unlimited keystroke macros, the best ~[ffi~~ ~W£[bM£LiU@~ ©@LQ>\7* configurability, "off the cuff" command language macros and blazing speed, you chose VEDIT PLUS.® ©cmDD iI a®@@a6J@aW~[Q)ULi Now the Choice is Easy The all new VEDIT PLUS 3.0 gives you the best Undo of any editor, the best compiler support, unequaled windows, true • Fully Network Compatible regular expressions and extensive new features. We're lead­ • Call for XENIX and OS/2 versions ing the way with easy to use pull down menus, context sensitive • 30 Day Money-back guarantee help, a pop-up ASCII table, new printing options and much more.
    [Show full text]
  • 4693, 4694, 4695 POS Terminals: Hardware Service Manual
    IBM 4693, 4694, and 4695 Point-of-Sale Terminals: SY27-0337-02 Hardware Service Manual Note Before using this information and the products it supports, be sure to read the general information under “Notices” on page viii. Translations of the safety notices can be found in IBM 4693/4694 Point of Sale Terminals: Product Safety Information, P/N 60G1330. Third Edition (October, 1995) This is the third edition of the IBM 4693, 4694, 4695 Point-of-Sale Terminals: Hardware Service Manual. Order publications through your IBM representative or the IBM branch office serving your locality. Publications are not stocked at the address given below. A form for readers’ comments is provided at the back of this publication. If the form has been removed, address your comments to: IBM Corporation, Information Development, Department CJMA P.O. Box 12195 Research Triangle Park, North Carolina 27709 USA When you send information to IBM, you grant IBM a nonexclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. Copyright International Business Machines Corporation 1993, 1995. All rights reserved. Note to U.S. Government Users — Documentation related to restricted rights — Use, duplication or disclosure is subject to restrictions set forth in GSA ADP Schedule Contract with IBM Corp. Contents Notices . viii Trademarks . viii Electronic Emission Notices .......................................... ix General Safety Considerations ........................................ ix Electrostatic Discharge (ESD) .......................................... x European Union (EU) Electromagnetic Compatibility ............................ xi Laser Product Identification .......................................... xi Preface . xii Store System Library ................................................ xii Store System Related Publications — Software ................................ xiii Store System Related Publications — Hardware ................................ xiii General Publications .
    [Show full text]
  • Suremark Hardware Service Updated October 30, 2001 Thermal Paper Switch Adjustment
    SureMark Printers Hardware Service Manual updated October 30, 2001 GY27-0355-03 updated October 30, 2001 Note Before using this information and the product it supports, be sure to read “Safety Information” on page viii, “Appendix D. Translated Safety Notices” on page 201, and the general information under “Appendix E. Notices” on page 209. Fourth Edition (September 2000) This edition applies to the IBM SureMark Printers, models TI1, TI2, TI3, TI4, TF6, and TM6. Order publications through your IBM representative or the IBM branch office serving your locality. Publications are not stocked at the address given below. A form for reader’s comments is also provided at the back of this publication. If the form has been removed, address your comments to: IBM Corporation, Information Development, Department CJMA PO Box 12195 Research Triangle Park, North Carolina, 27709 USA When you send information to IBM, you grant IBM a nonexclusive right to use or distribute whatever information you supply in any way it believes appropriate without incurring any obligation to you. © Copyright International Business Machines Corporation 1998, 2001. All rights reserved. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. updated October 30, 2001 Contents Preface ...........................vii Who Should Read This Manual ...................vii How This Manual Is Organized ...................vii Related Publications and Diskettes .................viii Tell Us What You Think......................viii Safety Information........................viii Summary of Changes .....................xvii Web-only update for GY27-0355-03 (October 2001) ...........xvii Web-only update for GY27-0355-03 (June 2001) ............xvii GY27-0355-03 .........................xvii GY27-0355-02 .........................xvii GY27-0355-01 .........................xvii Figures ...........................xix Part 1.
    [Show full text]