Would you like to see this page in English? Click here.


または
1-Clickで注文する場合は、サインインをしてください。
または
Amazonプライム会員に適用。注文手続きの際にお申し込みください。詳細はこちら
こちらからも買えますよ
この商品をお持ちですか? マーケットプレイスに出品する
Operating System Design: The Xinu Approach, Linksys Version
 
 

Operating System Design: The Xinu Approach, Linksys Version [ハードカバー]

Douglas Comer

参考価格: ¥ 6,573
価格: ¥ 6,548 通常配送無料 詳細
OFF: ¥ 25
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
在庫あり。 在庫状況について
この商品は、Amazon.co.jp が販売、発送します。
2点在庫あり。ご注文はお早めに。
2012/6/1 金曜日 にお届けします! 「お急ぎ便」オプション(有料)を選択して注文を確定された関東エリアへの配達のご注文が対象です。詳しくはこちら

キャンペーンおよび追加情報

  • 掲載画像とお届けする商品の表紙が異なる場合があります。ご了承ください。


商品の説明

内容説明

Operating System Design: The Xinu Approach, Linksys Version provides a comprehensive introduction to Operating System Design, using Xinu, a small, elegant operating system that serves as an example and a pattern for system design. The book focuses the discussion of operating systems on the microkernel operating system facilities used in embedded systems. Rather than introduce a new course to teach the important topics of embedded systems programming, this textbook takes the approach of integrating more embedded processing into existing operating systems courses. Designed for advanced undergraduate or graduate courses, the book prepares students for the increased demand for operating system expertise in industry.

Highlights

  • Explains how each operating system abstraction can be built and shows how the abstractions can be organized into an elegant, efficient design
  • Considers each level of the system individually, beginning with the raw hardware and ending with a working operating system
  • Covers every part of the system, so a reader will see how an entire system fits together, not merely how one or two parts interact
  • Provides source code for all pieces described in the text, leaving no mystery about any part of the implementation  a reader can obtain a copy of the system to examine, modify, instrument, measure, extend, or transport to another architecture
  • Demonstrates how each piece of an operating system fits into the design, in order to prepare the reader to understand alternative design choices

Beginning with the underlying machine and proceeding step by step through the design and implementation of an actual system, Operating System Design: The Xinu Approach, Linksys Version guides readers through the construction of a traditional process-based operating system using practical, straightforward primitives. It reviews the major system components and imposes a hierarchical design paradigm that organizes the components in an orderly and understandable manner.

All of the code in the book is designed to run on the Linksys router, because it is small, inexpensive, and easily accessible to students. Software and instructions for building a lab that allows students to experiment are available on the author’s website: www.xinu.cs.purdue.edu

著者について

Professor Comer is an internationally recognized expert on computer networking and the TCP/IP protocols. He has been working with TCP/IP and the Internet since the late 1970s. Dr. Comer established his reputation as a principal investigator on several early Internet research projects. He served as chairman of the CSNET technical committee, chairman of the DARPA Distributed Systems Architecture Board, and was a member of the Internet Activities Board (the group of researchers who built the Internet.).

Dr. Comer has created courses on operating systems, computer networks, the Internet, and TCP/IP protocols for a variety of audiences, including in-depth courses for engineers and less technical courses for others; he continues to teach at various industries and networking conferences around the world. In addition, Dr. Comer consults for private industry on the design of systems, networks, and networking equipment.

Professor Comer is well-known for his series of ground breaking textbooks on operating systems, computer networks, and the Internet. His books have been translated into sixteen languages, and are widely used in both industry and academia. Dr. Comer's three-volume series Internetworking With TCP/IP is often cited as an authoritative reference for the Internet protocols. More significantly, his texts have been used by fifteen of the top sixteen Computer Science Departments listed in the U.S. News and World Report ranking.

Dr. Comer's research is experimental. He and his students design and implement working prototypes of large, complex systems. They measure the performance of the resulting prototypes and assess tradeoffs. The operating system and protocol software that have resulted from his research have been used by industry in a variety of products.

For twenty years, Professor Comer served as editor-in-chief of the research journal Software--Practice and Experience, published by John Wiley & Sons. He is a Fellow of the ACM and the recipient of numerous teaching awards.


登録情報


この本のなか見!検索より (詳細はこちら
この本のサンプルページを閲覧する
おもて表紙 | 著作権 | 目次 | 抜粋 | 索引 | 裏表紙
この本の中身を閲覧する:

この商品にタグをつける

 (詳細)
タグは、商品との関連性が非常に強いキーワードまたはラベルのようなものです。
タグにより、すべてのお客様がお気に入りの商品の整理と確認を行うことができます。
※タグは初期設定で公開になっています。詳しくはこちら
 

カスタマーレビュー

Amazon.co.jp にはまだカスタマーレビューはありません
星5つ
星4つ
星3つ
星2つ
星1つ
Amazon.com で最も参考になったカスタマーレビュー (beta)
Amazon.com:  3件のカスタマーレビュー
4 人中、4人の方が、「このレビューが参考になった」と投票しています。
Excellent Book 2011/11/23
By Caleb - (Amazon.com)
形式:ハードカバー|Amazonが確認した購入
This book is excellent and I would highly recommend it to anyone interested in the field of operating systems. It explains the underlying reasoning behind each of the primary components of an operating system kernel, and does so in a way that is clear and succinct. Unfortunately, it does only cover kernel development for embedded systems. As such, the kernel discussed does not support virtual memory paging or processes. Concurrent threading is handled by light-weight threads, and all programs running on the system inhabit the same memory space. However, the book does provide a suitable base on which to build more complex systems.
1 人中、1人の方が、「このレビューが参考になった」と投票しています。
Complete Picture 2011/12/11
By M. M. Jagadam - (Amazon.com)
形式:ハードカバー|Amazonが確認した購入
The approach in this book is very different than other OS books. The goal is to give you a hands-on approach to OS design. I will provide detail input after I am done writing the OS.
A must-read for embedded system designers 2011/12/22
By nat32support - (Amazon.com)
形式:ハードカバー|Amazonが確認した購入
Douglas Comer's Xinu OS is clean, concise and simple (relatively speaking). Just like his original Xinu design (published in 1984), the current version features lightweight multi-processing, semaphores, messages, memory management and networking. All concepts are accurately explained, and illustrated with clear, concise C source code. Even concepts not implemented in Xinu (such as virtual Memory) are clearly explained, making the book a must-read for computing students and OS designers alike. This book will probably go down in history as a computing classic.

クチコミ

クチコミは、商品やカテゴリー、トピックについて他のお客様と語り合う場です。お買いものに役立つ情報交換ができます。
この商品のクチコミ一覧
内容・タイトル 返答 最新の投稿
まだクチコミはありません

複数のお客様との意見交換を通じて、お買い物にお役立てください。
新しいクチコミを作成する
タイトル:
最初の投稿:
サインインが必要です
 

クチコミを検索
すべてのクチコミを検索
   


リストマニア

リストを作成

関連商品を探す


同じキーワードの商品を探す


フィードバック


Amazon.co.jpのプライバシー ステートメント Amazon.co.jpの発送情報 Amazon.co.jpでの返品と交換