• Пожаловаться

Nicolas Besson: Microsoft Windows Embedded CE 6.0 Exam Preparation Kit

Здесь есть возможность читать онлайн «Nicolas Besson: Microsoft Windows Embedded CE 6.0 Exam Preparation Kit» весь текст электронной книги совершенно бесплатно (целиком полную версию). В некоторых случаях присутствует краткое содержание. Город: Redmond, год выпуска: 2008, категория: Руководства / ОС и Сети / Программы / на английском языке. Описание произведения, (предисловие) а так же отзывы посетителей доступны на портале. Библиотека «Либ Кат» — LibCat.ru создана для любителей полистать хорошую книжку и предлагает широкий выбор жанров:

любовные романы фантастика и фэнтези приключения детективы и триллеры эротика документальные научные юмористические анекдоты о бизнесе проза детские сказки о религиии новинки православные старинные про компьютеры программирование на английском домоводство поэзия

Выбрав категорию по душе Вы сможете найти действительно стоящие книги и насладиться погружением в мир воображения, прочувствовать переживания героев или узнать для себя что-то новое, совершить внутреннее открытие. Подробная информация для ознакомления по текущему запросу представлена ниже:

Nicolas Besson Microsoft Windows Embedded CE 6.0 Exam Preparation Kit

Microsoft Windows Embedded CE 6.0 Exam Preparation Kit: краткое содержание, описание и аннотация

Предлагаем к чтению аннотацию, описание, краткое содержание или предисловие (зависит от того, что написал сам автор книги «Microsoft Windows Embedded CE 6.0 Exam Preparation Kit»). Если вы не нашли необходимую информацию о книге — напишите в комментариях, мы постараемся отыскать её.

Nicolas Besson: другие книги автора


Кто написал Microsoft Windows Embedded CE 6.0 Exam Preparation Kit? Узнайте фамилию, как зовут автора книги и список всех его произведений по сериям.

Microsoft Windows Embedded CE 6.0 Exam Preparation Kit — читать онлайн бесплатно полную книгу (весь текст) целиком

Ниже представлен текст книги, разбитый по страницам. Система сохранения места последней прочитанной страницы, позволяет с удобством читать онлайн бесплатно книгу «Microsoft Windows Embedded CE 6.0 Exam Preparation Kit», без необходимости каждый раз заново искать на чём Вы остановились. Поставьте закладку, и сможете в любой момент перейти на страницу, на которой закончили чтение.

Тёмная тема

Шрифт:

Сбросить

Интервал:

Закладка:

Сделать

Key Terms<\/p> <\/div>

Do you know what these key terms mean? You can check your answers by looking up the terms in the glossary at the end of the book.<\/p>

■ IRQ<\/p>

■ SYSINTR<\/p>

■ IST<\/p>

■ ISR<\/p>

■ User mode<\/p>

■ Marshaling<\/p>

■ Stream interface<\/p>

■ Native interface<\/p>

■ PDD<\/p>

■ MDD<\/p>

■ Monolithic<\/p>

■ Bus-agnostic<\/p>

Suggested Practice<\/p> <\/div>

To help you successfully master the exam objectives presented in this chapter, complete the following tasks:<\/p>

Enhance Power Management Features<\/p> <\/div>

Continue to develop the string driver's power management code.<\/p>

Clear the string buffer<\/strong>Modify the string driver to delete the contents of the string buffer when the device driver switches into the power state D3 or D4.<\/p>

Change the power capabilities<\/strong>See what happens when you return a different POWER_CAPABILITIES value to Power Manager.<\/p>

More IOCTLs<\/p> <\/div>

Expand on the features of the string driver by adding more IOCTL handlers.<\/p>

Reverse the stored string<\/strong>Add an IOCTL to reverse the contents of the string in the buffer.<\/p>

Concatenate a string<\/strong>Add an IOCTL that concatenates a second string to the string stored without overrunning the buffer.<\/p>

Embedded pointers<\/strong>Replace the string parameter with a pointer to a string and access it with CeOpenCallerBuffer.<\/p>

Installable ISR<\/p> <\/div>

Learn more about installable ISRs by reading the product documentation.<\/p>

Learn more about installable ISRs<\/strong>Read the section "Installable ISRs and Device Drivers" in the Windows Embedded CE 6.0 Documentation, available on the Microsoft MSDN Web site at http://msdn2.microsoft.com/en-us/library/aa929596.aspx<\/em> to learn more about installable ISRs.<\/p>

Find an example of an installable ISR<\/strong>Find an example of an installable ISR and study its structure. A good starting point is the GIISR code that you can find in the %_WINCEROOT%\Public\Common\Oak\Drivers\Giisr folder.<\/p>

Glossary<\/p> <\/div>

Application Programming Interface (API)<\/strong>An API is the function interface that an operating system or library provides to support requests from application programs.<\/p>

Application Verifier (AppVerifier)<\/strong>AppVerifier enables developers to find subtle programming errors, such as heap corruption and incorrect handle usage, that can be difficult to identify with normal application testing<\/p>

Asynchronous Access<\/strong>When two or more threads access the same buffer at the same time.<\/p>

Binary Image Builder (.bib)<\/strong>A bib file defines which modules and files are included in a run-time image.<\/p>

Boot Loader<\/strong>Piece of code executed at the processor startup to initialize the processor and then launch an operating system.<\/p>

Board Support Package (BSP)<\/strong>A BSP is the common name for all board hardware- specific code. It typically consists of the boot loader, the OEM adaptation layer (OAL), and board-specific device drivers.<\/p>

Catalog<\/strong>A container of components that presents a selectable feature for an OSDesign to the user.<\/p>

Debugger Extension Commands (CeDebugX)<\/strong>CeDebugX is an extension to the Platform Builder debugger. It presents detailed information about the state of the system at break time and attempts to diagnose crashes, hangs, and deadlocks.<\/p>

Windows Embedded CE Test Kit (CETK)<\/strong>The CETK is a tool you can use to test device drivers that you develop for the Windows Embedded CE operating system.<\/p>

Cloning<\/strong>During cloning, you generate an exact copy of files to keep a secure copy of them before performing modifications. Code in the PUBLIC folder should always be cloned before making modifications.<\/p>

Component<\/strong>A CE feature that can be added to or removed from an OS Design using the catalog.<\/p>

Core Connectivity (CoreCon)<\/strong>Windows CE supports a unified communications infrastructure called Core Connectivity that enables full-featured connectivity for downloading and debugging.<\/p>

Critical Section<\/strong>An object with a synchronization process that is similar to a mutex object. The difference is that a critical section can only be accessed by the threads of a single process.<\/p>

Data Marshaling<\/strong>A process done on data to check the access rights and validity of the data for a different process.<\/p>

Debug Zone<\/strong>A flag to enable or disable debug messages related to a certain functionality or mode of a driver.<\/p>

Device Driver<\/strong>A device driver is software that manages the operation of a device by abstracting the functionality of a physical or virtual device.<\/p>

Dirs File<\/strong>A Dirs file is a text file that specifies the subdirectories that contain source code to be built.<\/p>

Embedded Pointer<\/strong>A pointer embedded in a memory structure.<\/p>

Environment Variable<\/strong>A Windows environment variable that can enable or disable features. It is generally used to configure the build system and OS design from the catalog<\/p>

Event<\/strong>Synchronization objects used by threads and the kernel to notify other threads in the system.<\/p>

Exception<\/strong>An exception is an abnormal situation that happens while a program is running.<\/p>

Iltiming<\/strong>Iltiming determines interrupt service routine (ISR) and interrupt service thread (IST) latencies on a Windows Embedded CE system.<\/p>

Interrupt<\/strong>A trigger that suspends (interrupts) the system temporarily to indicate that something has happened that requires processing. Each interrupt on a system is associated with a particular Interrupt Request (IRQ) value and this IRQ value is associated with one or more ISR.<\/p>

Interrupt Service Routine (ISR)<\/strong>An ISR is a software routine that hardware invokes in response to an interrupt. ISRs examine an interrupt and determine how to handle it by returning a SYSINTR value, which is then associated with an IST.<\/p>

Interrupt Service Thread (IST)<\/strong>The IST is a thread that does most of the interrupt processing. The OS wakes the IST when the OS has an interrupt to process. After each IST is associated to a SYSINTR value, the SYSINTR value can be returned from an ISR, and then the associated IST runs.<\/p>

IRQ (Interrupt Request)<\/strong>IRQ values are associated in hardware with interrupts. Each IRQ value can be associated with one or more ISRs that the system will run to process the associated interrupt when it is triggered.<\/p>

Читать дальше
Тёмная тема

Шрифт:

Сбросить

Интервал:

Закладка:

Сделать

Похожие книги на «Microsoft Windows Embedded CE 6.0 Exam Preparation Kit»

Представляем Вашему вниманию похожие книги на «Microsoft Windows Embedded CE 6.0 Exam Preparation Kit» списком для выбора. Мы отобрали схожую по названию и смыслу литературу в надежде предоставить читателям больше вариантов отыскать новые, интересные, ещё не прочитанные произведения.


Отзывы о книге «Microsoft Windows Embedded CE 6.0 Exam Preparation Kit»

Обсуждение, отзывы о книге «Microsoft Windows Embedded CE 6.0 Exam Preparation Kit» и просто собственные мнения читателей. Оставьте ваши комментарии, напишите, что Вы думаете о произведении, его смысле или главных героях. Укажите что конкретно понравилось, а что нет, и почему Вы так считаете.