Bedienungsanleitung Sun Microsystems 2

Bedienungsanleitung für das Gerät Sun Microsystems 2

Gerät: Sun Microsystems 2
Kategorie: Büro-kabelloses-Headset
Produzent: Sun Microsystems
Größe: 0.28 MB
Datum des Hinzufügens: 8/27/2014
Seitenanzahl: 50
Anleitung drucken

Herunterladen

Wie kann man es nutzen?

Unser Ziel ist Ihnen einen schnellen Zugang zu Inhalten in Bedienungsanleitungen zum Gerät Sun Microsystems 2 zu garantieren. Wenn Sie eine Online-Ansicht nutzten, können Sie den Inhaltsverzeichnis schnell durchschauen und direkt zu der Seite gelangen, auf der Sie die Lösung zu Ihrem Problem mit Sun Microsystems 2 finden.

Für Ihre Bequemlichkeit

Wenn das direkte Durchschauen der Anleitung Sun Microsystems 2 auf unserer Seite für Sie unbequem ist, können sie die folgende zwei Möglichkeiten nutzen:

  • Vollbildsuche – Um bequem die Anleitung durchzusuchen (ohne sie auf den Computer herunterzuladen) können Sie den Vollbildsuchmodus nutzen. Um das Durchschauen der Anleitung Sun Microsystems 2 im Vollbildmodus zu starten, nutzen Sie die Schaltfläche Vollbild
  • Auf Computer herunterladen – Sie können die Anleitung Sun Microsystems 2 auch auf Ihren Computer herunterladen und sie in Ihren Sammlungen aufbewahren. Wenn Sie jedoch keinen Platz auf Ihrem Gerät verschwenden möchten, können Sie sie immer auf ManualsBase herunterladen.
Sun Microsystems 2 Handbuch - Online PDF
Advertisement
« Page 1 of 50 »
Advertisement
Druckversion

Viele Personen lesen lieber Dokumente nicht am Bildschirm, sondern in gedruckter Version. Eine Druckoption der Anleitung wurde ebenfalls durchdacht, und Sie können Sie nutzen, indem Sie den Link klicken, der sich oben befindet - Anleitung drucken. Sie müssen nicht die ganze Sun Microsystems 2 Anleitung drucken, sondern nur die Seiten, die Sie brauchen. Schätzen Sie das Papier.

Zusammenfassungen

Unten finden Sie Trailer des Inhalts, der sich auf den nächsten Anleitungsseiten zu Sun Microsystems 2 befindet. Wenn Sie den Seiteninhalt der nächsten Seiten schnell durchschauen möchten, können Sie sie nutzen.

Inhaltszusammenfassungen
Inhaltszusammenfassung zur Seite Nr. 1

Multitasking Guide
Sun Java™ Wireless Client Software, Version 2.0
Java Platform, Micro Edition
Sun Microsystems, Inc.
www.sun.com
May 2007

Inhaltszusammenfassung zur Seite Nr. 2

Copyright © 2007 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. All rights reserved. Sun Microsystems, Inc. has intellectual property rights relating to technology embodied in the product that is described in this document. In particular, and without limitation, these intellectual property rights may include one or more of the U.S. patents listed at http://www.sun.com/patents and one or more additional patents or pending patent applications in the U.S. and in

Inhaltszusammenfassung zur Seite Nr. 3

Contents Preface ix 1. Introduction 1 Multitasking 2 Robustness 3 Mechanisms Compared With Policies 3 2. Multitasking Safety 5 Multitask Safety and Multithread Safety 6 Global and Static Data 7 Singletons 8 Multitasking Safety Example 9 Multithread Safety 11 Multitask Safety 13 Establishing Per-Task Context 15 3. Managing Native Resources 21 Resource Management Mechanisms 22 Reservation 22 Limit 23 Revocation 24 iii

Inhaltszusammenfassung zur Seite Nr. 4

Default Resource Allocation Policies 24 Customization of Resource Allocation Policies 25 4. Other Multitasking Issues 29 Switching the Foreground MIDlet 29 Default Policy 30 Alternative Policies and Their Implementations 30 Scheduling the CPU 30 Default CPU Scheduling Policy 31 Alternative Policies and Their Implementations 31 Interrupting the User 32 Default User Notification Policies 32 Glossary 33 Index 37 iv Multitasking Guide • May 2007

Inhaltszusammenfassung zur Seite Nr. 5

Code Samples CODE EXAMPLE 2-1 Native API for a Microwave Oven 9 CODE EXAMPLE 2-2 Typical usage of the microwave 10 CODE EXAMPLE 2-3 Simple Java API for the Microwave Oven 10 CODE EXAMPLE 2-4 Introducing a Locking Mechanism for Thread Safety 11 CODE EXAMPLE 2-5 Using the Locking Mechanism 12 CODE EXAMPLE 2-6 Migrating the Initialization Variable to Native Code (Doesn’t Work) 14 CODE EXAMPLE 2-7 Migrating Initialization to Native Code 14 CODE EXAMPLE 2-8 Keeping State in Java Code 16 CODE EXAMPLE

Inhaltszusammenfassung zur Seite Nr. 6

vi Multitasking Guide • May 2007

Inhaltszusammenfassung zur Seite Nr. 7

Tables TABLE 3-1 Constant Definitions for the Resource Management Policy 26 vii

Inhaltszusammenfassung zur Seite Nr. 8

viii Multitasking Guide • May 2007

Inhaltszusammenfassung zur Seite Nr. 9

Preface The Multitasking Guide highlights multitasking programming issues in the Sun Java™ Wireless Client software. It describes how to make code safe for the multitasking environment of the Java Wireless Client software. There is a special section about resource management. The Multitasking Guide also describes some multitasking policies implemented in the Java Wireless Client software and discusses possible alternatives. Note – Sun Microsystems has simplified the naming schemes for the variou

Inhaltszusammenfassung zur Seite Nr. 10

Note – Note - Sun is not responsible for the availability of web sites mentioned in this document. Sun does not endorse and is not responsible or liable for any content, advertising, products, or other materials available through such sites. How This Guide Is Organized This book contains the following chapters: Chapter 1 provides an overview of the implementation and pitfalls of the Java Wireless Client software’s multitasking environment. Chapter 2 describes how source code can be made safe for

Inhaltszusammenfassung zur Seite Nr. 11

Application Title Multitasking Test Tools Multitasking Quality Test Suite Guide Viewing reference documentation created by the Javadoc™ tool Java API Reference Viewing reference documentation created by the Doxygen tool Native API Reference Typographic Conventions Used in This Guide Typeface Meaning Examples Courier The names of commands, files, Edit your .login file. AaBbCc123 and directories; on-screen Use ls -a to list all files. computer output % You have mail. Bold What you type, when % su

Inhaltszusammenfassung zur Seite Nr. 12

Accessing Sun Documentation Online The Java Developer Connection™ program web site enables you to access Java platform technical documentation at http://java.sun.com/. Sun Welcomes Your Comments We are interested in improving our documentation and welcome your comments and suggestions. Provide feedback to Sun at http://java.sun.com/docs/forms/sendusmail.html. xii Multitasking Guide • May 2007

Inhaltszusammenfassung zur Seite Nr. 13

CHAPTER 1 Introduction Customers use mobile phones and other handheld devices for many tasks, such as making phone calls, taking photographs, playing games, organizing contact information, keeping a calendar of events, and accessing web sites. It is natural for them to want to do more than one of these tasks at a time. For example, a customer might not want to shut the address book to receive a flight-delay alert. The Java Wireless Client software, which can concurrently run multiple MIDlets, me

Inhaltszusammenfassung zur Seite Nr. 14

Multitasking The Connected Limited Device Configuration HotSpot™ Implementation can run multiple Java applications within a single operating system (OS) process. Historically, a CLDC virtual machine (VM) could run one Java application at a time, and each virtual machine typically required its own OS process. Running more than one Java application meant running more than one OS process. This could use too many resources on some small devices. The multitasking feature enables a single virtual mach

Inhaltszusammenfassung zur Seite Nr. 15

Robustness In addition to providing the multitasking that users want, tasks have the following benefits: ■ Fault containment - If a Java application crashes, then any problems caused by this crash are limited to the task. Applications running in other tasks are unaffected. ■ Clean termination - When a Java application exits, it leaves the virtual machine in a consistent state. In the past, some have tried to run multiple Java applications in a single process by running the applications in separa

Inhaltszusammenfassung zur Seite Nr. 16

Because policies are so device dependent, this book does not recommend specific policy combinations. As you determine the policies for your device, keep in mind that policies interact with each other and not all combinations of policies make sense. For example, if you have a policy to allow a MIDlet to access a sound device while it is in the background, it does not make sense to also have a policy to suspend a MIDlet’s execution when it is in the background. 4 Multitasking Guide • May 2007

Inhaltszusammenfassung zur Seite Nr. 17

CHAPTER 2 Multitasking Safety The Java Wireless Client software provides the ability to run multiple MIDlets concurrently in a single OS process. From the standpoint of the OS, there is one process and one Java virtual machine. However, from the standpoint of a Java application, it appears as if it is running in its own, independent virtual machine, isolated from other Java applications. These apparently independent virtual machines are called tasks. Each MIDlet runs in its own task. When a new

Inhaltszusammenfassung zur Seite Nr. 18

The following list summarizes the multitasking safety issues to consider when you update or add native code for your port: ■ Multitask safety and multithread safety ■ Native global or static data ■ Singletons Multitask Safety and Multithread Safety Many systems today are multithreaded, which requires code that runs in these systems to be thread safe or multithread safe. For example, POSIX Threads (Pthreads) enables multiple native threads to run in the same OS process. Each native thread has acc

Inhaltszusammenfassung zur Seite Nr. 19

For example, certain native functions (such as file storage) must be maintained on a per-application basis. In a single-tasking system, only one application is running, and so all file access is on behalf of that one application. In a multitasking system, several applications are running, and so the file access code can no longer assume that just one application exists. Instead, it must be aware of the possibility of multiple applications, so that one application doesn't accidentally operate on

Inhaltszusammenfassung zur Seite Nr. 20

Maintain the following invariants: ■ A value of zero means a NULL pointer ■ A nonzero value means a valid native pointer In native code, when you allocate memory, use KNI field access to store the pointer in the private field. When you free the native memory, use KNI field access to store 0 in the field. Using the K Native Interface (KNI) field access avoids race conditions. Have operations that use the native pointer use KNI field access for consistency. Have those operations check for aNULL va


Ähnliche Anleitungen
# Bedienungsanleitung Kategorie Herunterladen
1 Sun Microsystems 2 Handbuch Tablett-Zubehör 0
2 AeroComm TRANSCEIVER ZB2430 Handbuch Büro-kabelloses-Headset 0
3 Agilent Technologies Option 100 Handbuch Büro-kabelloses-Headset 0
4 Agilent Technologies 4338A Handbuch Büro-kabelloses-Headset 1
5 Agilent Technologies E2625A Handbuch Büro-kabelloses-Headset 1
6 Agilent Technologies 5071A Handbuch Büro-kabelloses-Headset 5
7 Aiphone JA-2SD Handbuch Büro-kabelloses-Headset 0
8 Aiphone B Handbuch Büro-kabelloses-Headset 0
9 Advantek Networks AWN-USB-54S Handbuch Büro-kabelloses-Headset 23
10 Sony XBA-BT75 Handbuch Büro-kabelloses-Headset 15
11 Aiphone nch-2 Handbuch Büro-kabelloses-Headset 0
12 Aiphone TD1-H Handbuch Büro-kabelloses-Headset 0
13 Black Box 26721 Handbuch Büro-kabelloses-Headset 1
14 Bell RT27 Handbuch Büro-kabelloses-Headset 0
15 BlueAnt Wireless T1 Handbuch Büro-kabelloses-Headset 10