Upgrading the JCMT Control System to Platform Independence

Size: px
Start display at page:

Download "Upgrading the JCMT Control System to Platform Independence"

Transcription

1 Upgrading the JCMT Control System to Platform Independence Mary Fuka a, Dennis Kelly b, and Richard Prestage a a Joint Astronomy Centre, 660 N. A ohoku Place, Hilo, HI b Royal Observatory, Blackford Hill, Edinburgh, EH9 3HJ, Scotland ABSTRACT The James Clerk Maxwell Telescope (JCMT) is escaping from its dependence on VAX/VMS legacy software by incrementally upgrading its control system using platform-independent tools. The first stage of the upgrade includes a GUI, written in Java and modeled on project planning software, for defining complex observing recipes. Another GUI serves as an editor for observation definition files describing the details of an individual observation. The recipe designer also serves as an observation subsystem controller, executing observing scripts containing combinations of low-level and high-level commands (recipes), using the parameters from the observation definition file. The next stage of the upgrade includes a Java-based queue manager. The DRAMA system developed at the Anglo Australian Observatory provides a convenient bridge between the existing VAX/ VMS-based instrument tasks and the new controller and queue manager. Keywords: Control Systems, Observing Recipes, Java 1. INTRODUCTION The James Clerk Maxwell Telescope, a 15-meter radio telescope optimized for sub-millimetre wavelength astronomy, celebrated its tenth anniversary in autumn Its control system has evolved through planned incremental upgrades into a mature, stable system. However, this very stability has drawbacks: it is becoming increasingly difficult to add new instruments and improved observing modes to the existing system. In order to provide more flexibility for adding instruments and observing modes and modifying existing modes, the JCMT controls group is implementing a major control system upgrade. Goals of the observatory control system upgrade project include: improving functionality and flexibility for implementing new observing modes while retaining those currently provided; maximizing performance by performing non-conflicting tasks in parallel; reducing operating system dependencies that limit choices for designing new instruments and observing modes; facilitating flexible queue-based scheduling of both heterodyne and continuum instruments. This paper will describe the new JCMT observation controller and explain how it contributes to the above goals. 2. EXISTING CONTROL SYSTEM DESIGN AND LIMITATIONS Observing with JCMT requires cooperation among several subsystems, each subsystem controlled by a separate task for ease of maintenance. Fast communication among tasks is provided by noticeboards stored in shared global sections, while slower inter-task communication is accomplished using the ADAM message system. 1 Even simple observations taken with the JCMT require synchronization of activities among several subsystems. Typical heterodyne (position switched) samples consist of several data-taking cycles, each cycle requiring: slewing the telescope between source and reference positions, updating secondary mirror position, checking that the receiver is phase-locked, a. M.Fuka@jach.hawaii.edu b D.Kelly@roe.ac.uk a R.Prestage@jach.hawaii.edu

2 integrating the data at each telescope position, reading out the data when each integration is finished, Performing an FFT and other preliminary data reduction steps on the latest data read, updating the system temperature using the reference position for sky data, calibrating the latest data and adding it into accumulators, storing and displaying the accumulated data. These steps are performed for each data cycle until enough data is collected to achieve the desired signal-to-noise ratio. For efficiency, data readout and reduction and cycle setup activities such as phase-lock checking are done while the telescope is slewing between source and reference. The other single-point sample modes are similar to position-switching, with some type of telescope movement or frontend frequency adjustment being the main inter-cycle activity to be coordinated with integration, readout and data reduction. Coordination of the sub-systems is the responsibility of the heterodyne control task, an ADAM task which contains the hardcoded logic to sequence and control these low-level activities as required. Map-making is conceptually similar to single-point observations, but with the added complexity that the telescope must be commanded to cover a series of sky positions. The current control system allows only two mapping modes for heterodyne instrument observations: grids and raster-maps. Grids are evenly-space single-point observations. Rasters are accomplished by slewing the telescope while repeatedly integrating across a whole row of the map, then integrating on a single reference position to calibrate data for the row. The existing control task handles the current observing modes quite capably, as there are relatively few overlapping activities. However, both for single position and map observations, we frequently receive requests to allow modifications to the observing process. For maps, some options desired are to allow repeat cycles of several source positions with one reference position, or to take a full set of calibration data periodically during a map. In principle it would be possible to modify the current control task to support these new observing modes, although each one requires modification to the VMS Fortran in the control task. Other requests, however, such as adding support for heterodyne polarimetry, are almost impossible to support within the framework of the existing system. In addition, new instrumentation, such as the multi-element array system under development, will require even more new functionality not supported by the existing control task. These considerations have led us away from the idea of a control task which has pre-defined observing modes hard-coded within it, to that of a flexible observation controller. This will be capable of executing recipes describing the sequence of lowerlevel activities required. The provision of new observing modes will then be a simple matter of modifying the existing recipes, or writing new ones, as required. An added benefit is that the recipe will clearly separate the specification of the control flow for a specific observation from the mechanisms used to cause the observation to be executed. SCUBA, the bolometer array, is controlled by its own Fortran control task, with the assistance of a queue manager, its own private scripting language, and observation definition files containing observing parameters for a particular observation. Figure 1 diagrams the interaction among tasks in the existing control system. Bringing both heterodyne and continuum observing under a single observation controller will simplify operations and make software maintenance less complicated. Efficient observing with the JCMT requires several actions to be performed in parallel at various stages of the observation. The ADAM environment provides the ability to execute actions in parallel, but the logic becomes tedious to follow if more than a small amount of parallelism is implemented. The control task programmer must keep track of those actions active at each stage of the observation, and those which must be completed before going on to the next stage. The command line interface to the existing control system has been well-received, so much so that the menu-oriented interface was rarely used, and has therefore been discarded. Nevertheless, controlling an observation is rapidly becoming more complex and the telescope support specialists have to keep track of several interacting subsystems during the course of an observation. A graphical interface showing the progress of an observation and state of the observatory will make this easier.

3 ICL Procedures Heterodyne Instruments Control Task SCUBA Control Task SCUBA Queue Manager TEL TMU Heterodyne Instrument Tasks Storage, Display, Logging SMU SCUBA Tasks Figure 1: Current Control System Software Configuration 3. CONTROL SYSTEM UPGRADE OVERVIEW The new observation controller will replace both control tasks and the command line control interface with a graphical observation driver coded primarily in Java. Features that led to the choice of Java include: Simplicity of porting to new hardware platforms: Java s claim to be write once, run anywhere was especially appealing after years of being locked into hardware platforms that support VMS. Java s multithreading provides a convenient way to run several control flows at the same time, simplifying the handling of actions executing in parallel. Java has a large and growing library of components for building the graphical user interfaces required for the recipe design tool and observing control interface. No effort is available to replace the existing instrument tasks, so for now they will remain VMS ADAM tasks. Drama, 2,3 the software environment developed at the Anglo-Australian Observatory to support the requirements of real-time distributed systems, has built into it the ability to communicate with VMS ADAM tasks. The Java observation controller uses an auxiliary Drama task to communicate with these ADAM tasks as well as with newer tasks, such as the Portable Telescope Control System Suite (PTCS), coded in the Drama environment. Drama is the preferred JCMT software environment for future instruments, although we do not want to rule out other options that may present themselves. Observation Definition Tool Observing Recipes Observation Definition Files Telescope Observation Designer / Driver Observation Queue Manager Heterodyne Storage / Display Heterodyne Instrument Tasks TEL TMU SMU SCUBA Tasks Figure 2: Upgraded Control System Configuration and Command Flow

4 The observation controller, called Todd (Telescope Observation Designer and Driver), is also used for creating observing recipes and for testing their execution in simulation mode, a convenient way for the recipe designer to debug observing modes. Another auxiliary program, called toddle, provides an interface from any available scripting language to the observation controller. SCUBA s observing queue will be replaced with a new queue manager, talking directly to the Todd, and capable of controlling both heterodyne and continuum observations. Interaction among the queue manager, the Todd, auxiliary tasks and instrument tasks is diagrammed in Figure USING THE RECIPE DESIGNER A Todd observing mode recipe is constructed of three visual components, FoldBox, Command, and Pause. FoldBoxes can have other components, including FoldBoxes, placed inside them. Command components represent actual commands that can be executed by the Todd. There are two types of command components: built-in Todd commands that manipulate Todd internal variables, and action commands to be sent to tasks. Action commands correspond to the ADAM / Drama commands to obey or cancel a task action or to get or set a task parameter. Examples of typical commands are: Obeyw DAS integrate - to start an integration Obeyw TEL slew - to slew the telescope Obeyw RXA frequency to set frontend frequency Pause allows the programmer to set points where the observation may be paused if the observer wishes to do so. FoldBoxes have loop variables associated with them: maxloop for specifying the number of iterations, and countname for counting iterations. A ConditionBox, a special type of FoldBox, allows conditional execution of recipe elements depending on evaluation of an expression associated with it. Each Todd component has a status level variable that can be set to success, abort or fatal to control whether or not the component executes under each status condition. This permits the recipe designer to specify which parts of the recipe must be executed under abort or fatal error conditions. For example, the observation may be terminated immediately when a fatal error occurs, but files should be closed and the telescope reset to its state at the beginning of an observation. A less serious error or an abort command from the observer may require the current observing cycle to be finished and the data reduced before terminating. A simulation flag and time is associated with each FoldBox and command for convenience in testing recipes. A FoldBox can be labelled with an appropriate label and folded away Figure 3: FoldBox Properties Window to conceal observation sequence details. On start-up, the Todd reads in two files, one containing a set of often-used commands and one containing default values for a number of Todd variables. These files can be edited to add commands and variables as new instruments and observing modes are added. Commands and variables that can be included in a recipe are not limited to those in the start-up files. To create a recipe, the observation designer starts up the Todd. Three windows appear, the main Todd window, containing the TopBox, an object properties window and a ToolBox. Objects are placed on the main Todd window by clicking on the desired element in the ToolBox window, then clicking on the TopBox or the FoldBox where you want to place the object. Clicking on an element with the right mouse button brings up its properties in the Properties window. The properties can then be edited. Figures 3 and 4 show the main Todd window, the ToolBox, and the Properties windows for FoldBoxes and commands. Note that FoldBox properties include countname and maxloop for loop iterations, while command properties include command and params entries for selecting and editing commands. Clicking on the command entry point brings up a scroll-box of frequently used standard commands. Clicking on the params entry point brings up a window displaying the entered command, or the default if no command has been entered, which can then be edited. Foreground and background colors for each object may also

5 be changed from the default gray-scale choices. For now, we prefer to use color conservatively, to highlight the parts of an observation as they execute or to call attention to alarm and warning conditions. Figure 4: Todd Main Window, ToolBox, and Command Properties. The pull-down edit menu is used to sequence components to indicate the following causal relationships: execute B when A completes, execute B when A has started or execute B on a trigger signalled by A. Elements are re-arranged on the Todd window to show these relationships, as shown in Figure 4. The edit menu also provides cut, copy and paste options for adding or changing recipe elements, and link and unlink options for re-arranging the causal relationships. Recipes or portions of recipes contained in a FoldBox are saved using the File pull-down menu. This menu also provides options for loading previously saved recipes, for clearing the main Todd window, and for testing recipes by selecting reset, then start. Any portion of a recipe contained in a FoldBox may be saved as a separate entity; this enables the designer to build up libraries of reusable parts for ease in creating complete observation recipes. 5. USING THE OBSERVATION DEFINITION TOOL A recipe by itself is not sufficient to define an observation. It describes the sequence of actions to be performed, but does not include the parameters for those actions, for example, rest frequency and velocity for setting the frontend observing frequency. Observation Definition Files (ODF s) are text files containing variable names paired with variable values. The Todd reads these to fill in values for any variables invoked in a recipe s commands. At start-up, the Todd reads in a file containing defaults for all of the commonly referenced variables, but a recipe may use as many variables as it requires. Variables included in an ODF override the Todd s default values. A prototype version of the observation definition tool has been coded in Tcl/Tk. It brings up only the parameters necessary for each type of observation, showing system defaults or last-used values for each parameter. A saved ODF file may be read in to replace the default values. Parameters are then edited as needed, and the ODF file is saved. A set of ODF files for typical observations is available to make it easier to add and edit ODF s for particular observations.

6 Figure 5: Prototype Observation Definition Tool. The Observe Modes button brings up a list of available observing modes, for example, single-point sample, grid, focus or fivepoint. Switch Modes similarly brings up a menu of switching modes and Instruments lists the backend instruments available. Frontend instruments do not affect the observing mode, so are edited as parameters. A carriage return after entering a value causes the tool to check whether the value is within range. The? button brings up a brief description of the parameter and the acceptable range of values. 6. DRIVING AN OBSERVATION In addition to its recipe creation function, the Todd also serves as an observation driver. When used in this mode, it expects to receive commands via two higher-level components, a queue manager and a scripting language. An auxiliary task, called toddle, provides an interface to the Todd from any scripting language that runs on a Unix workstation. In observing mode, the Todd depends on an auxiliary task, called dramatodd, to pass Drama or ADAM commands on to tasks running on any networked workstation. Before observing, the Todd and its auxiliary task dramatodd are run up on the operator interface workstation. Device control tasks are loaded on the networked VMS and Unix workstations as required. Drama network communications are started on all workstations. The Todd is sent the observe command with the name of an ODF file, either interactively, from a script, or from the queue manager. The Todd reads in values for the variables specified in the ODF file, including the name of the observation mode recipe. It then checks to see if the recipe is already in its cache; if not, it reads it from disk. It displays the recipe on its main window and immediately starts executing it. As the observation proceeds, currently active parts are highlighted by changing color. Recipes are usually saved with FoldBoxes in folded-up state, but any FoldBox can be opened during the course of the observation to give a more detailed view of how it is proceeding. Figure 6 shows a beam-switched cycle recipe with one of its nod-and-monitor FoldBoxes open to show the details. Parameters in the ODF file can be overridden by direct commands to the Todd, even during the execution of an observation. For example, the number of cycles can be set high before an observation, then reduced when the desired signal-to-noise is reached. Pause points can be included in a recipe, initially turned off by setting pausecount to zero, then turned on by setting pausecount to one. Error conditions may also toggle the pausecount variable, providing a point where the observation stops and prompts the telescope support specialist to adjust some hardware, after which the observation can finish successfully.

7 Figure 6: Beam-switched cycle recipe with one nod-and-monitor FoldBox open. The observer can also command the Todd to override some of its variables, then repeat the last observation. This is convenient when an observer wants to perform a sequence of similar observations with minor changes to the ODF variables, keeping the same instrument configuration but changing frequency, for example. The scripting interface will provide the ability to override Todd variables on the observe command line. The Todd implements this feature by reading in an ODF file, then modifying variables as requested before executing the observation. 7. DETAILS OF THE RECIPE DESIGNER / DRIVER 5 The Todd is based on extensive modifications of Sun s BeanBox. Extensive information on JavaBeans is available on Sun Microsystem s web pages: java.sun.com/beans. JavaBeans are reusable software components that can be manipulated visually in a builder tool 6. Each of the Todd recipe builder components, FoldBox, Command, and Pause, is a Java class, and an instance is created for each component appearing in a recipe. Each Todd component is an independent Java Object with its own internal variables. Each has properties which are displayed in the properties window when the component is selected. The Todd itself is a frame containing a TopBox and a ScrollPane. TopBox contains any number of FoldBox, Command and Pause objects. FoldBox objects contain other FoldBox objects as well as Command and Pause objects. Figure 8 shows these relationships. Inheritance among the classes is illustrated in Figure 7. JCMTBean is the base class which implements much of the functionality inherited by TopBox, FoldBox, RawCommand, Command and Pause. It manages scheduling connections to other objects and has a parallel thread, JCMTCommand, which carries out the activity represented by its associated JCMTBean. JCMTCommand waits on semaphores signalling that a command should be started or has completed, then performs the relevant

8 calls to the methods in the JCMTBean. It also keeps track of the repeat count for the command and updates the variable associated with the count. When the command has completed, it calls the JCMTBean method that informs other objects of its completion. Panel Todd JCMTBean TopBox ScrollPane TopBox Command RawCommand Pause Command FoldBox FoldBox Pause = a kind of = a part of Figure 7: JCMTBean Inheritance Figure 8: Todd Object Aggregation To manage sequencing, each component contains a list of the components that must be informed of changes in its state. Each component also keeps a list and a count of the objects it has to wait for. When it receives notification from one of its objects, it decrements the count of the items it is waiting for, and when the count goes to zero, it starts executing its operation. There is no global sequencing knowledge; it is scattered among the components, each of which understands only its own relationships with the other objects. The Todd uses TCP/IP sockets for connecting upwards to the scripting system and downwards to the auxiliary Drama task that interprets and passes on Drama and ADAM commands. When it starts up, it announces itself using two TCP/IP port numbers. If nothing connects to the auxiliary task port, it functions only as a recipe designer, echoing commands to its stdout instead of passing them on to the Drama system. Figure 9 illustrates the communications flow among tasks when the Todd is used as an observation driver. The DramaComms class handles downwards communication. It contains threads to perform the built-in commands for setting Todd internal variables, to simulate commands by echoing to stdout, and to send commands to tasks and receive responses. The auxiliary Drama task, dramatodd, connects to the Todd s down port when it starts up. It accepts commands coming in on the socket and calls Drama user interface subroutines to send these commands on to the specified Drama and/or ADAM tasks. A structure is created specifying the completion, error, and information message handlers for each command sent. These handlers in turn send messages back to DramaComms where the receiving thread takes action depending on the type of message.

9 Drama Task Scripting Language Interface Todd (Java) dramatodd (Drama C-code) Drama Message Handling ADAM Task ADAM Task Drama Task Figure 9: Communications Flow Communication upwards is handled by the CommandServer class, which can service up to three simultaneous connections, normally from the toddle scripting interface program. Each command is handled by a thread that waits for the command to complete before returning the completion message through the socket and closing the connection. While most messages coming in through this socket will be observe commands, CommandServer can handle any primitive command that can be entered into a Command button, thus providing a great deal of flexibility for modifying observation parameters interactively or from scripts. 8. PROJECT STATUS AND FUTURE PLANS We are now in the process of creating and testing observation recipes, first on our simulated system in Hilo, then on the summit system. A few modifications to existing tasks will be required before the upgrade can be fully tested. Enhancements being added to the Todd include an operator display screen to relay messages sent in response to task commands and a status display showing the current state of the observation. We plan to run the Todd on a Sun workstation. However, it has been successfully tested running from Windows NT, so we have flexibility in choosing future operator interface workstations. We are discussing options for implementing the queue manager. We hope to provide a scripting language interface tied more closely to at least one of the popular languages. The observation definition tool needs to be re-worked, and will probably be recoded in Java. Our first release will replicate observing modes available in the existing system, but with improved efficiency because of the increased level of parallel action execution. A full test and evaluation is planned for late summer or early autumn REFERENCES 1. A. Bridger, R. Prestage, M. A. Fuka, Cooperating Software Tasks for the Control of Large Telescopes, Nuclear Instruments and Methods in Physics Research Vol. A293, pp , North-Holland, Amsterdam, T. J. Farrell, K. Shortridge, and J. A. Bailey, DRAMA: An environment for instrumentation software, Bull. Amer. Astr. Soc. 25, pp , J. A. Bailey, T. J. Farrell, and K. Shortridge, DRAMA: An environment for distributed instrumentation software, in Telescope Control Systems, P. T. Wallace, ed., Proc. SPIE 2479, pp 62-68, D. Kelly, Alpha-2 Release of the Todd, JCMT OCS System Note 15.1, D. Kelly, The Todd Internals Manual, JCMT OCS System Note 13.1, G. Hamilton, ed., Sun Microsystems JavaBeans TM, Sun Microsystems, Inc., 1998.

OS structure. Process management. Major OS components. CSE 451: Operating Systems Spring Module 3 Operating System Components and Structure

OS structure. Process management. Major OS components. CSE 451: Operating Systems Spring Module 3 Operating System Components and Structure CSE 451: Operating Systems Spring 2012 Module 3 Operating System Components and Structure Ed Lazowska lazowska@cs.washington.edu Allen Center 570 The OS sits between application programs and the it mediates

More information

The Application of a Distributed Computing Architecture to a Large Telemetry Ground Station

The Application of a Distributed Computing Architecture to a Large Telemetry Ground Station The Application of a Distributed Computing Architecture to a Large Telemetry Ground Station Item Type text; Proceedings Authors Buell, Robert K. Publisher International Foundation for Telemetering Journal

More information

TECH-NOTE. The Keyboard Macro Editor. The Keyboard Macro Editor Dialog Box

TECH-NOTE. The Keyboard Macro Editor. The Keyboard Macro Editor Dialog Box The Keyboard Macro Editor The Keyboard Macro Editor is a feature in the Designer TM for Windows TM software package that allows the user to associate specific functions with keys or touchcells on a UniOP

More information

Operating-System Structures

Operating-System Structures Operating-System Structures System Components Operating System Services System Calls System Programs System Structure System Design and Implementation System Generation 1 Common System Components Process

More information

Appendix A - Glossary(of OO software term s)

Appendix A - Glossary(of OO software term s) Appendix A - Glossary(of OO software term s) Abstract Class A class that does not supply an implementation for its entire interface, and so consequently, cannot be instantiated. ActiveX Microsoft s component

More information

Software Tools. Scott Klemmer Autumn 2009

Software Tools. Scott Klemmer Autumn 2009 stanford hci group http://cs147.stanford.edu Software Tools Scott Klemmer Autumn 2009 It accomplishes an important task (for better and for worse) You don t have to make it yourself, and it abstracts a

More information

ENVI Tutorial: Introduction to ENVI

ENVI Tutorial: Introduction to ENVI ENVI Tutorial: Introduction to ENVI Table of Contents OVERVIEW OF THIS TUTORIAL...1 GETTING STARTED WITH ENVI...1 Starting ENVI...1 Starting ENVI on Windows Machines...1 Starting ENVI in UNIX...1 Starting

More information

PROMISE ARRAY MANAGEMENT ( PAM) USER MANUAL

PROMISE ARRAY MANAGEMENT ( PAM) USER MANUAL PROMISE ARRAY MANAGEMENT ( PAM) USER MANUAL Copyright 2002, Promise Technology, Inc. Copyright by Promise Technology, Inc. (Promise Technology). No part of this manual may be reproduced or transmitted

More information

Joint Astronomy Centre James Clerk Maxwell Telescope

Joint Astronomy Centre James Clerk Maxwell Telescope Joint Astronomy Centre James Clerk Maxwell Telescope PTCS TCS/UN/004 Nick Rees, Russell Kackley 4 August 2003 Description of the JAC Telescope Control System serial line interface Contents 1 Introduction

More information

Infrastructure of the Gemini Observatory Control System

Infrastructure of the Gemini Observatory Control System Infrastructure of the Gemini Observatory Control System K. K. Gillies and S. Walker Gemini 8m Telescopes Project, 950 N. Cherry Ave., Tucson, AZ, 85719 Gemini Preprint # 31 Infrastructure of the Gemini

More information

BIOTECHNOLOGY COMPUTING FACILITY. OnCore Facility Scheduler v1.0. OCF Scheduler. Resource User Guide

BIOTECHNOLOGY COMPUTING FACILITY. OnCore Facility Scheduler v1.0. OCF Scheduler. Resource User Guide BIOTECHNOLOGY COMPUTING FACILITY OnCore Facility Scheduler v1.0 OCF Scheduler Resource User Guide OCF Scheduler RESOURCE USER GUIDE BIOTECHNOLOGY COMPUTING FACILITY - DIVISION OF BIOTECHNOLOGY Arizona

More information

Distributed Control Systems at SSRL Constraints for Software Development Strategies. Timothy M. McPhillips Stanford Synchrotron Radiation Laboratory

Distributed Control Systems at SSRL Constraints for Software Development Strategies. Timothy M. McPhillips Stanford Synchrotron Radiation Laboratory Distributed Control Systems at SSRL Constraints for Software Development Strategies Timothy M. McPhillips Stanford Synchrotron Radiation Laboratory Overview Computing Environment at our Beam Lines Need

More information

CS 4300 Computer Graphics

CS 4300 Computer Graphics CS 4300 Computer Graphics Prof. Harriet Fell Fall 2011 Lecture 8 September 22, 2011 GUIs GUIs in modern operating systems cross-platform GUI frameworks common GUI widgets event-driven programming Model-View-Controller

More information

ACT-R Environment Manual

ACT-R Environment Manual Working Draft Dan Bothell Table of Contents Table of Contents...2 Preface...3 Introduction...4 Running the Environment...6 Environment Overview...9 Current Model...11 Model...13 Control...15 Current Data...30

More information

Operating Systems. Operating System Structure. Lecture 2 Michael O Boyle

Operating Systems. Operating System Structure. Lecture 2 Michael O Boyle Operating Systems Operating System Structure Lecture 2 Michael O Boyle 1 Overview Architecture impact User operating interaction User vs kernel Syscall Operating System structure Layers Examples 2 Lower-level

More information

Chapter 3: Operating-System Structures

Chapter 3: Operating-System Structures 1 Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines System Design and Implementation System Generation 3.1

More information

CSCI Object Oriented Design: Frameworks and Design Patterns George Blankenship. Frameworks and Design George Blankenship 1

CSCI Object Oriented Design: Frameworks and Design Patterns George Blankenship. Frameworks and Design George Blankenship 1 CSCI 6234 Object Oriented Design: Frameworks and Design Patterns George Blankenship Frameworks and Design George Blankenship 1 Background A class is a mechanisms for encapsulation, it embodies a certain

More information

Ricardo Rocha. Department of Computer Science Faculty of Sciences University of Porto

Ricardo Rocha. Department of Computer Science Faculty of Sciences University of Porto Ricardo Rocha Department of Computer Science Faculty of Sciences University of Porto Slides based on the book Operating System Concepts, 9th Edition, Abraham Silberschatz, Peter B. Galvin and Greg Gagne,

More information

Single Menus No other menus will follow necessitating additional user choices

Single Menus No other menus will follow necessitating additional user choices 57 UNIT-III STRUCTURES OF MENUS Single Menus No other menus will follow necessitating additional user choices Sequential Linear Menus Simultaneous Menus 58 Hierarchical Menus When many relationships exist

More information

TOPLink for WebLogic. Whitepaper. The Challenge: The Solution:

TOPLink for WebLogic. Whitepaper. The Challenge: The Solution: Whitepaper The Challenge: Enterprise JavaBeans (EJB) represents a new standard in enterprise computing: a component-based architecture for developing and deploying distributed object-oriented applications

More information

Some popular Operating Systems include Linux Operating System, Windows Operating System, VMS, OS/400, AIX, z/os, etc.

Some popular Operating Systems include Linux Operating System, Windows Operating System, VMS, OS/400, AIX, z/os, etc. An Operating System (OS) is an interface between computer user and computer hardware. An operating system is software which performs all the basic tasks like file management, memory management, process

More information

Parallel Programming Models. Parallel Programming Models. Threads Model. Implementations 3/24/2014. Shared Memory Model (without threads)

Parallel Programming Models. Parallel Programming Models. Threads Model. Implementations 3/24/2014. Shared Memory Model (without threads) Parallel Programming Models Parallel Programming Models Shared Memory (without threads) Threads Distributed Memory / Message Passing Data Parallel Hybrid Single Program Multiple Data (SPMD) Multiple Program

More information

Object-Oriented Experiences with GBT Monitor and Control

Object-Oriented Experiences with GBT Monitor and Control Astronomical Data Analysis Software and Systems VII ASP Conference Series, Vol. 145, 1998 R. Albrecht, R. N. Hook and H. A. Bushouse, eds. Object-Oriented Experiences with GBT Monitor and Control J. R.

More information

Last class: OS and Architecture. OS and Computer Architecture

Last class: OS and Architecture. OS and Computer Architecture Last class: OS and Architecture OS and Computer Architecture OS Service Protection Interrupts System Calls IO Scheduling Synchronization Virtual Memory Hardware Support Kernel/User Mode Protected Instructions

More information

Last class: OS and Architecture. Chapter 3: Operating-System Structures. OS and Computer Architecture. Common System Components

Last class: OS and Architecture. Chapter 3: Operating-System Structures. OS and Computer Architecture. Common System Components Last class: OS and Architecture Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines System Design and Implementation

More information

CHAPTER-1: INTRODUCTION TO OPERATING SYSTEM:

CHAPTER-1: INTRODUCTION TO OPERATING SYSTEM: CHAPTER-1: INTRODUCTION TO OPERATING SYSTEM: TOPICS TO BE COVERED 1.1 Need of Operating System 1.2 Evolution of os 1.3 operating system i. Batch ii. iii. iv. Multiprogramming Time sharing Real time v.

More information

Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture

Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture Last Class: OS and Computer Architecture System bus Network card CPU, memory, I/O devices, network card, system bus Lecture 4, page 1 Last Class: OS and Computer Architecture OS Service Protection Interrupts

More information

ENVI Classic Tutorial: Introduction to ENVI Classic 2

ENVI Classic Tutorial: Introduction to ENVI Classic 2 ENVI Classic Tutorial: Introduction to ENVI Classic Introduction to ENVI Classic 2 Files Used in This Tutorial 2 Getting Started with ENVI Classic 3 Loading a Gray Scale Image 3 ENVI Classic File Formats

More information

HDF Virtualization Review

HDF Virtualization Review Scott Wegner Beginning in July 2008, The HDF Group embarked on a new project to transition Windows support to a virtualized environment using VMWare Workstation. We utilized virtual machines in order to

More information

UNIT V SYSTEM SOFTWARE TOOLS

UNIT V SYSTEM SOFTWARE TOOLS 5.1 Text editors UNIT V SYSTEM SOFTWARE TOOLS A text editor is a type of program used for editing plain text files. Text editors are often provided with operating systems or software development packages,

More information

POL-2 Polarimetry & Data Reduction

POL-2 Polarimetry & Data Reduction POL-2 Polarimetry & Data Reduction Mark G. Rawlings, Support Scientist, EAO / JCMT With thanks to David S. Berry JCMT Users Meeting 2017, Nanjing Contents POL-2 Instrument Overview POL-2 Daisy Mode POL-2

More information

Operating-System Structures

Operating-System Structures Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines System Design and Implementation System Generation 3.1 Sana a University,

More information

Chapter 3: Operating-System Structures

Chapter 3: Operating-System Structures Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines System Design and Implementation System Generation 3.1

More information

CS352 Lecture: Database System Architectures last revised 11/22/06

CS352 Lecture: Database System Architectures last revised 11/22/06 CS352 Lecture: Database System Architectures last revised 11/22/06 I. Introduction - ------------ A. Most large databases require support for accesing the database by multiple users, often at multiple

More information

PROMISE ARRAY MANAGEMENT ( PAM) FOR FastTrak S150 TX2plus, S150 TX4 and TX4000. User Manual. Version 1.3

PROMISE ARRAY MANAGEMENT ( PAM) FOR FastTrak S150 TX2plus, S150 TX4 and TX4000. User Manual. Version 1.3 PROMISE ARRAY MANAGEMENT ( PAM) FOR FastTrak S150 TX2plus, S150 TX4 and TX4000 User Manual Version 1.3 Promise Array Management Copyright 2003 Promise Technology, Inc. All Rights Reserved. Copyright by

More information

Specifying and Prototyping

Specifying and Prototyping Contents Specifying and Prototyping M. EVREN KIYMAÇ 2008639030 What is Specifying? Gathering Specifications Specifying Approach & Waterfall Model What is Prototyping? Uses of Prototypes Prototyping Process

More information

Virtual Memory. Chapter 8

Virtual Memory. Chapter 8 Chapter 8 Virtual Memory What are common with paging and segmentation are that all memory addresses within a process are logical ones that can be dynamically translated into physical addresses at run time.

More information

BASIC USER TRAINING PROGRAM Module 5: Test Case Development

BASIC USER TRAINING PROGRAM Module 5: Test Case Development BASIC USER TRAINING PROGRAM Module 5: Test Case Development Objective Student will have an understanding of how to create, edit and execute a Test Case from Develop a Test Case Activity Page. Student will

More information

Operating System Services

Operating System Services CSE325 Principles of Operating Systems Operating System Services David Duggan dduggan@sandia.gov January 22, 2013 Reading Assignment 3 Chapter 3, due 01/29 1/23/13 CSE325 - OS Services 2 What Categories

More information

Module 3: Operating-System Structures. Common System Components

Module 3: Operating-System Structures. Common System Components Module 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines System Design and Implementation System Generation 3.1 Common

More information

An Introduction to Software Architecture. David Garlan & Mary Shaw 94

An Introduction to Software Architecture. David Garlan & Mary Shaw 94 An Introduction to Software Architecture David Garlan & Mary Shaw 94 Motivation Motivation An increase in (system) size and complexity structural issues communication (type, protocol) synchronization data

More information

The Mosaic Data Capture Agent

The Mosaic Data Capture Agent Astronomical Data Analysis Software and Systems VII ASP Conference Series, Vol. 145, 1998 R. Albrecht, R. N. Hook and H. A. Bushouse, eds. The Mosaic Data Capture Agent Doug Tody and Francisco G. Valdes

More information

Joint Astronomy Centre James Clerk Maxwell Telescope

Joint Astronomy Centre James Clerk Maxwell Telescope Joint Astronomy Centre James Clerk Maxwell Telescope PTCS TCS/UN/004 Nick Rees, Russell Kackley, (Firmin Oliveira) 4 August 2003, (15 November 2005) Description of the JAC Telescope Control System serial

More information

Game keystrokes or Calculates how fast and moves a cartoon Joystick movements how far to move a cartoon figure on screen figure on screen

Game keystrokes or Calculates how fast and moves a cartoon Joystick movements how far to move a cartoon figure on screen figure on screen Computer Programming Computers can t do anything without being told what to do. To make the computer do something useful, you must give it instructions. You can give a computer instructions in two ways:

More information

DQpowersuite. Superior Architecture. A Complete Data Integration Package

DQpowersuite. Superior Architecture. A Complete Data Integration Package DQpowersuite Superior Architecture Since its first release in 1995, DQpowersuite has made it easy to access and join distributed enterprise data. DQpowersuite provides an easy-toimplement architecture

More information

Abstract 1. Introduction

Abstract 1. Introduction Jaguar: A Distributed Computing Environment Based on Java Sheng-De Wang and Wei-Shen Wang Department of Electrical Engineering National Taiwan University Taipei, Taiwan Abstract As the development of network

More information

Unit 9 : Fundamentals of Parallel Processing

Unit 9 : Fundamentals of Parallel Processing Unit 9 : Fundamentals of Parallel Processing Lesson 1 : Types of Parallel Processing 1.1. Learning Objectives On completion of this lesson you will be able to : classify different types of parallel processing

More information

Alternate Appendix A: Using the TI-92 Calculator

Alternate Appendix A: Using the TI-92 Calculator Alternate Appendix A: Using the TI-92 Calculator This document summarizes TI-92 calculation and programming operations as they relate to the text, Inside Your Calculator. Even those who do not read the

More information

Chapter 1 Preliminaries

Chapter 1 Preliminaries Chapter 1 Preliminaries Chapter 1 Topics Reasons for Studying Concepts of Programming Languages Programming Domains Language Evaluation Criteria Influences on Language Design Language Categories Language

More information

EECS 3221 Operating System Fundamentals

EECS 3221 Operating System Fundamentals EECS 3221 Operating System Fundamentals Instructor: Prof. Hui Jiang Email: hj@cse.yorku.ca Web: http://www.eecs.yorku.ca/course/3221 General Info 3 lecture hours each week 2 assignments (2*5%=10%) 1 project

More information

EECS 3221 Operating System Fundamentals

EECS 3221 Operating System Fundamentals General Info EECS 3221 Operating System Fundamentals Instructor: Prof. Hui Jiang Email: hj@cse.yorku.ca Web: http://www.eecs.yorku.ca/course/3221 3 lecture hours each week 2 assignments (2*5%=10%) 1 project

More information

Spitzer Heritage Archive

Spitzer Heritage Archive Spitzer Heritage Archive Xiuqin Wu, Trey Roby, Loi Ly IRSA/SSC, California Institute of Technology, 100-22, Pasadena, CA, USA ABSTRACT The Spitzer Heritage Archive 1 will host all the raw and final reprocessed

More information

Operating Systems. Operating Systems

Operating Systems. Operating Systems The operating system defines our computing experience. It is the first software we see when we turn on the computer, and the last software we see when the computer is turned off. It's the software that

More information

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center Reporting for Contact Center Setup and Operations Guide BCM Contact Center Document Number: Document Status: Standard Document Version: 05.01 Date: September 2006 Copyright 2005 2006 Nortel Networks, All

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface CHAPTER 1 Finding Your Way in the Inventor Interface COPYRIGHTED MATERIAL Understanding Inventor s interface behavior Opening existing files Creating new files Modifying the look and feel of Inventor Managing

More information

Chapter 11 Running the Model

Chapter 11 Running the Model CHAPTER CONTENTS Simulation Menu 568 Section 1 Simulation Options...569 General Options & Settings 570 Output Reporting Options 572 Running a Specific Replication 574 Customized Reporting 574 Section 2

More information

Managing Video Feeds. About Video Feeds CHAPTER

Managing Video Feeds. About Video Feeds CHAPTER CHAPTER 5 This chapter describes how to use the VSOM Video Feeds area to set up and manage camera groups and feeds, import camera configurations into VSOM using batch administration, and set up archives

More information

WINDOWS NT BASICS

WINDOWS NT BASICS WINDOWS NT BASICS 9.30.99 Windows NT Basics ABOUT UNIVERSITY TECHNOLOGY TRAINING CENTER The University Technology Training Center (UTTC) provides computer training services with a focus on helping University

More information

CSE 4/521 Introduction to Operating Systems. Lecture 29 Windows 7 (History, Design Principles, System Components, Programmer Interface) Summer 2018

CSE 4/521 Introduction to Operating Systems. Lecture 29 Windows 7 (History, Design Principles, System Components, Programmer Interface) Summer 2018 CSE 4/521 Introduction to Operating Systems Lecture 29 Windows 7 (History, Design Principles, System Components, Programmer Interface) Summer 2018 Overview Objective: To explore the principles upon which

More information

Operating Systems. Lecture 09: Input/Output Management. Elvis C. Foster

Operating Systems. Lecture 09: Input/Output Management. Elvis C. Foster Operating Systems 141 Lecture 09: Input/Output Management Despite all the considerations that have discussed so far, the work of an operating system can be summarized in two main activities input/output

More information

OS and Computer Architecture. Chapter 3: Operating-System Structures. Common System Components. Process Management

OS and Computer Architecture. Chapter 3: Operating-System Structures. Common System Components. Process Management Last class: OS and Architecture OS and Computer Architecture OS Service Protection Interrupts System Calls IO Scheduling Synchronization Virtual Memory Hardware Support Kernel/User Mode Protected Instructions

More information

High Performance Computing Prof. Matthew Jacob Department of Computer Science and Automation Indian Institute of Science, Bangalore

High Performance Computing Prof. Matthew Jacob Department of Computer Science and Automation Indian Institute of Science, Bangalore High Performance Computing Prof. Matthew Jacob Department of Computer Science and Automation Indian Institute of Science, Bangalore Module No # 09 Lecture No # 40 This is lecture forty of the course on

More information

Swing Based Remote GUI Emulation

Swing Based Remote GUI Emulation Swing Based Remote GUI Emulation Thomas Tilley and Peter Eklund School of Information Technology, Griffith University, Australia 4215 {T.Tilley,P.Eklund}@gu.edu.au This paper describes the implementation

More information

by Pearson Education, Inc. All Rights Reserved.

by Pearson Education, Inc. All Rights Reserved. Programmers write instructions in various programming languages, some directly understandable by computers and others requiring intermediate translation steps. Computer languages may be divided into three

More information

Distributed Computing Environment (DCE)

Distributed Computing Environment (DCE) Distributed Computing Environment (DCE) Distributed Computing means computing that involves the cooperation of two or more machines communicating over a network as depicted in Fig-1. The machines participating

More information

Accelerated Library Framework for Hybrid-x86

Accelerated Library Framework for Hybrid-x86 Software Development Kit for Multicore Acceleration Version 3.0 Accelerated Library Framework for Hybrid-x86 Programmer s Guide and API Reference Version 1.0 DRAFT SC33-8406-00 Software Development Kit

More information

Chapter 3 Parallel Software

Chapter 3 Parallel Software Chapter 3 Parallel Software Part I. Preliminaries Chapter 1. What Is Parallel Computing? Chapter 2. Parallel Hardware Chapter 3. Parallel Software Chapter 4. Parallel Applications Chapter 5. Supercomputers

More information

Element: Relations: Topology: no constraints.

Element: Relations: Topology: no constraints. The Module Viewtype The Module Viewtype Element: Elements, Relations and Properties for the Module Viewtype Simple Styles Call-and-Return Systems Decomposition Style Uses Style Generalization Style Object-Oriented

More information

Operating System Overview. Chapter 2

Operating System Overview. Chapter 2 Operating System Overview Chapter 2 1 Operating System A program that controls the execution of application programs An interface between applications and hardware 2 Operating System Objectives Convenience

More information

Software Design Patterns. Background 1. Background 2. Jonathan I. Maletic, Ph.D.

Software Design Patterns. Background 1. Background 2. Jonathan I. Maletic, Ph.D. Software Design Patterns Jonathan I. Maletic, Ph.D. Department of Computer Science Kent State University J. Maletic 1 Background 1 Search for recurring successful designs emergent designs from practice

More information

Maxwell RSC Tablet PC Configuration Manual for use with Windows 8 Operating System

Maxwell RSC Tablet PC Configuration Manual for use with Windows 8 Operating System Maxwell RSC Tablet PC Configuration Manual for use with Windows 8 Operating System TM537 1/18 Table of Contents 1 Maxwell RSC Instrument and Tablet PC...1 2 Glossary...3 3 Adjusting Volume Settings...5

More information

ArcView QuickStart Guide. Contents. The ArcView Screen. Elements of an ArcView Project. Creating an ArcView Project. Adding Themes to Views

ArcView QuickStart Guide. Contents. The ArcView Screen. Elements of an ArcView Project. Creating an ArcView Project. Adding Themes to Views ArcView QuickStart Guide Page 1 ArcView QuickStart Guide Contents The ArcView Screen Elements of an ArcView Project Creating an ArcView Project Adding Themes to Views Zoom and Pan Tools Querying Themes

More information

COLLEGE OF ENGINEERING, NASHIK-4

COLLEGE OF ENGINEERING, NASHIK-4 Pune Vidyarthi Griha s COLLEGE OF ENGINEERING, NASHIK-4 DEPARTMENT OF COMPUTER ENGINEERING 1) What is Android? Important Android Questions It is an open-sourced operating system that is used primarily

More information

GUJARAT TECHNOLOGICAL UNIVERSITY MASTER OF COMPUTER APPLICATION SEMESTER: III

GUJARAT TECHNOLOGICAL UNIVERSITY MASTER OF COMPUTER APPLICATION SEMESTER: III GUJARAT TECHNOLOGICAL UNIVERSITY MASTER OF COMPUTER APPLICATION SEMESTER: III Subject Name: Operating System (OS) Subject Code: 630004 Unit-1: Computer System Overview, Operating System Overview, Processes

More information

Active Server Pages Architecture

Active Server Pages Architecture Active Server Pages Architecture Li Yi South Bank University Contents 1. Introduction... 2 1.1 Host-based databases... 2 1.2 Client/server databases... 2 1.3 Web databases... 3 2. Active Server Pages...

More information

EGGERS ONLINE. Customer User Guide - Quoting

EGGERS ONLINE. Customer User Guide - Quoting EGGERS ONLINE Customer User Guide - Quoting URL: www.eggersindustriesonline.com or www.eggersindustries.com (Customers / Eggers Online) You are strongly encouraged to change your initial password see 'CHANGING

More information

CAMERA User s Guide. They are most easily launched from the main menu application. To do this, all the class files must reside in the same directory.

CAMERA User s Guide. They are most easily launched from the main menu application. To do this, all the class files must reside in the same directory. CAMERA User s Guide 1 Quick Start CAMERA is a collection of concise, intuitive and visually inspiring workbenches for cache mapping schemes and virtual memory. The CAMERA workbenches are standalone applications

More information

Chapter 3: Operating-System Structures

Chapter 3: Operating-System Structures Chapter 3: Operating-System Structures System Components Operating System Services System Calls POSIX System Programs System Structure Virtual Machines System Design and Implementation System Generation

More information

CSC 2405: Computer Systems II

CSC 2405: Computer Systems II CSC 2405: Computer Systems II Dr. Mirela Damian http://www.csc.villanova.edu/~mdamian/csc2405/ Spring 2016 Course Goals: Look under the hood Help you learn what happens under the hood of computer systems

More information

Welcome to NEO Software Release Version

Welcome to NEO Software Release Version Welcome to NEO Software Release Version 3.8.2.97 Philips Strand Lighting has released a new version of software for the NEO lighting control family of products. This software, version 3.8.2.97 is available

More information

Whitepaper Wishful Thinking vs. Reality in Regards to Virtual Backup and Restore Environments

Whitepaper Wishful Thinking vs. Reality in Regards to Virtual Backup and Restore Environments Whitepaper Wishful Thinking vs. Reality in Regards to Virtual Backup and Restore Environments Best practices for backing up virtual environments Table of Contents Why choose virtualization?... 3 What is

More information

Organization of User Interface Software

Organization of User Interface Software Organization of User Interface Software Administration Questions about assignments due and assignments assigned 2 What we will talk about Ways to organize UI code Different models of user interfaces as

More information

Chapter 1. Preliminaries

Chapter 1. Preliminaries Chapter 1 Preliminaries Chapter 1 Topics Reasons for Studying Concepts of Programming Languages Programming Domains Language Evaluation Criteria Influences on Language Design Language Categories Language

More information

IBM Object REXX Now Runs on Windows NT and Windows 95

IBM Object REXX Now Runs on Windows NT and Windows 95 Software Announcement February 25, 1997 IBM Now Runs on Overview Initially created as a procedural interpreter, the ease of use, clearly structured concept, and rich set of powerful commands and functions

More information

dowing Syste Xspeak: A Use for a Speech Interface i Mark S. Ackerman, Sanjay Manandhar and Chris M. Schmandt

dowing Syste Xspeak: A Use for a Speech Interface i Mark S. Ackerman, Sanjay Manandhar and Chris M. Schmandt Xspeak: A Use for a Speech Interface i dowing Syste Mark S. Ackerman, Sanjay Manandhar and Chris M. Schmandt Media Laboratory, M.I.T. Cambridge, MA 02139 USA (612') 253-5156 We discuss an application to

More information

Java Concurrency in practice Chapter 9 GUI Applications

Java Concurrency in practice Chapter 9 GUI Applications Java Concurrency in practice Chapter 9 GUI Applications INF329 Spring 2007 Presented by Stian and Eirik 1 Chapter 9 GUI Applications GUI applications have their own peculiar threading issues To maintain

More information

USER GUIDE. Tolomatic Motion Interface (TMI) Actuator Control Solutions for: ACS Stepper Drive/Controller Tolomatic Electric Linear Actuators

USER GUIDE. Tolomatic Motion Interface (TMI) Actuator Control Solutions for: ACS Stepper Drive/Controller Tolomatic Electric Linear Actuators USER GUIDE Tolomatic Motion Interface (TMI) Actuator Control Solutions for: ACS Stepper Drive/Controller Tolomatic Electric Linear Actuators 3600-4167_01_TMI_Gui LINEAR SOLUTIONS MADE EASY Tolomatic reserves

More information

Introduction to OS (cs1550)

Introduction to OS (cs1550) Introduction to OS (cs1550) Why take this class? Why with Mosse? it s mandatory it s a great class it s a great prof it s easy (NOT!!!! do not fool thyself!) it s good for you Life is not life anymore

More information

Lock/Unlock the Model 831

Lock/Unlock the Model 831 CHAPTER 20 Lock/Unlock the Model 831 To prevent unauthorized use or tampering with measurements and data, the Model 831 has a lock feature. When this is enabled, the Model 831 is tamper proof to a level

More information

To provide a grand tour of the major operating systems components To provide coverage of basic computer system organization

To provide a grand tour of the major operating systems components To provide coverage of basic computer system organization Introduction What Operating Systems Do Computer-System Organization Computer-System Architecture Operating-System Structure Operating-System Operations Process Management Memory Management Storage Management

More information

Chapter 1: Introduction. Operating System Concepts 9 th Edit9on

Chapter 1: Introduction. Operating System Concepts 9 th Edit9on Chapter 1: Introduction Operating System Concepts 9 th Edit9on Silberschatz, Galvin and Gagne 2013 Chapter 1: Introduction 1. What Operating Systems Do 2. Computer-System Organization 3. Computer-System

More information

Objectives. Object-Oriented Analysis and Design with the Unified Process 2

Objectives. Object-Oriented Analysis and Design with the Unified Process 2 Objectives Understand the differences between user interfaces and system interfaces Explain why the user interface is the system to the users Discuss the importance of the three principles of user-centered

More information

In examining performance Interested in several things Exact times if computable Bounded times if exact not computable Can be measured

In examining performance Interested in several things Exact times if computable Bounded times if exact not computable Can be measured System Performance Analysis Introduction Performance Means many things to many people Important in any design Critical in real time systems 1 ns can mean the difference between system Doing job expected

More information

CS370 Operating Systems

CS370 Operating Systems CS370 Operating Systems Colorado State University Yashwant K Malaiya Fall 2016 Lecture 2 Slides based on Text by Silberschatz, Galvin, Gagne Various sources 1 1 2 System I/O System I/O (Chap 13) Central

More information

WSMGR for Web Supporting Mission-critical Applications on Smart Devices Mainframe in Your Pocket

WSMGR for Web Supporting Mission-critical Applications on Smart Devices Mainframe in Your Pocket WSMGR for Web Supporting Mission-critical Applications on Smart Devices in Your Pocket Mitsuo Fujitake Yukio Hirao Akihiko Miura s are widely used for running mission-critical enterprise systems as they

More information

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

More information

DOWNLOAD PDF TELEPHONE BILLING SYSTEM PROJECT

DOWNLOAD PDF TELEPHONE BILLING SYSTEM PROJECT Chapter 1 : Telephone Billing System In VB Project Report Projects The project thus calculates the t elephone bills automatically. It does almost every work which is related to automatic telephone billing

More information

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server

SQL Server. Management Studio. Chapter 3. In This Chapter. Management Studio. c Introduction to SQL Server Chapter 3 SQL Server Management Studio In This Chapter c Introduction to SQL Server Management Studio c Using SQL Server Management Studio with the Database Engine c Authoring Activities Using SQL Server

More information

Auto Source Code Generation and Run-Time Infrastructure and Environment for High Performance, Distributed Computing Systems

Auto Source Code Generation and Run-Time Infrastructure and Environment for High Performance, Distributed Computing Systems Auto Source Code Generation and Run-Time Infrastructure and Environment for High Performance, Distributed Computing Systems Minesh I. Patel Ph.D. 1, Karl Jordan 1, Mattew Clark Ph.D. 1, and Devesh Bhatt

More information

Overview of the Experimental Physics and Industrial Control System: EPICS

Overview of the Experimental Physics and Industrial Control System: EPICS September, 1998 Overview of the Experimental Physics and Industrial Control System: EPICS Stephen A. Lewis Lawrence Berkeley National Laboratory A Note for Prospective Users Introduction The collaboration

More information