|
|||||||||||||||||||||||||||||||||||
|
8 Reviews
|
Average Customer Review
Share your thoughts with other customers
Create your own review
|
|
Most Helpful First | Newest First
|
|
22 of 25 people found the following review helpful:
1.0 out of 5 stars
Lacking substance and focus,
By A Customer
This review is from: Memory Management: Algorithms and Implementations in C/C++ (Windows Programming/Development) (Paperback)
I work in a field where memory management is absolutely critical and was greatly looking forward to this book greatly. However it turned out to be a massive disappointment. The title is memory management, algorithms and implementations. However, the algorithms don't even really start until the last third of the book, and when they do, they are overly simple, and barely touch on the theory or critical characteristics behind the algorithms. This book is filled with useless tangents, some of the most random of which involving microkernal versus monolithic kernal, scanning of faces at the Super Bowl, and instructions for setting the 80x line of chips from real to protected mode! This book presents no practically useful algorithms, as all of the handling of cases such as growing the memory block are left as 'excercises for the reader' as are performance improvments even though final performance is essential in order to be able to properly compare and contrast the algorithms.In closing, skip this book and pick up either 'Operating System Concepts 6th ed' or 'Operating Systems: Design and Implemenation 2nd ed' which actually have meaningful insight into practical approaches for memory management and concerns.
10 of 11 people found the following review helpful:
5.0 out of 5 stars
Nuts and Bolts Perspective,
By A Customer
This review is from: Memory Management: Algorithms and Implementations in C/C++ (Windows Programming/Development) (Paperback)
While a lot of books on computer memory end up abstracting their discussion somehow, Blunden's book lies at the opposite end of the spectrum. All aspects of computer memory are examined (hardware level, OS level, application level) and in each instance concrete, non-trivial, examples are presented. Nothing, and I mean nothing, is left to the imagination. This book is nothing short of an exhaustive look at memory management. Engineers interested in this traditionally neglected topic should buy this book!Having read other reviews, I will agree that the material in the last chapter is just a little prophetic.
6 of 6 people found the following review helpful:
4.0 out of 5 stars
Developmental history and some examples of Code,
By
Amazon Verified Purchase(What's this?)
This review is from: Memory Management: Algorithms and Implementations in C/C++ (Windows Programming/Development) (Paperback)
This book, is one of the few computer books I have read from cover to cover - code listings are easy to scan/skip, and the book itself is not huge (however the cost seems fairly high for the size).This book is clearly written, and well researched. It is not for beginners. This book spends time on the hardware aspects of Memory management based on the Intel 386 and above architecture. Real Mode versus protected mode and how the processor design allows for memory protection in protected mode. This is then followed by a survey of Operating Systems, from DOS to Linux to Windows - which is moving from the simple to the complex - and how the OS provides Memory Management services. Then the development of computer languages, and how they allow for memory management starting with COBOL and moving on to Object oriented C++ and Java Virtual Machines. Finally the last part of the book has a lot of code listings with very simplistic memory management and moving into slightly more complex algorithms for memory management for programs. The focus is on introducing multiple approaches and how to measure the real performance of each - some parts of this part of the book seemed like they were repeating the same text in making comments about the code. Overall, I liked the book. I read the Pentium Protected Mode architecture book last year, and it prepared me for this book. I have not done much assembly level x86 programming, but enough to understand what was being shown in the early examples. The book has a very good bibilography of sources for each chapter - six long chapters. I felt, while looking at these bibilographies, that the time spent in going through all of the items in the bibliography was part of the reason that this books price was set so high. The references here are thorough and identify some turning points in computer sciences to me. The structure of the book is the layers by which memory managment is accomplshed - the memory management code is more of an intro. I felt that the book might be targeting Computer Science courses as its real market - the books structure lays down a good foundation for further exploration. The deeper development of Memory Management algorithms is where I too found the book lacking, and the title a bit deceiving - a complaint from another that I would agree with. This is the reason for not giving 5 stars. It would have taken a lot more time to develop the code and write explanations for more complex approaches and the author states this repeatedly in this algorithm section of the book. I am inspired from this book to learn more about x86 assembly language, and to study the actual code of the Linux Kernel. If that sounds of interest to you too, then you should buy this book.
1 of 1 people found the following review helpful:
4.0 out of 5 stars
Insightful book with some problems,
By Eli Bendersky (Israel) - See all my reviews
This review is from: Memory Management: Algorithms and Implementations in C/C++ (Windows Programming/Development) (Paperback)
Memory allocation is a fascinating area, ripe in trade-offs and cutting-edge research. In this book, Bill Blunden manages to provide a pretty-good overview of the topic.It begins with an introduction of the lowest levels - the hardware, namely the CPU memory management unit. Then it goes on to explain how operating systems manage memory - segmentation, paging, virtual memory and what's between them. Next, memory is examined on the programming-language level - compiler-level and heap allocation mechanisms in Fortran, COBOL, Pascal, C and finally Java. The second part of the book is the practice: the author implements several manual memory management schemes (own implementations of malloc/free) in C++, and compares them in terms of performance and other characteristics (like memory fragmentation). Finally, he implements a couple of simple garbage collectors (reference-counting, and mark-sweep), and in the last chapter of the book also briefly mentions the important topic of sub-allocators (also known as "pools" or "arenas"). Overall, I enjoyed the book. But I do have a few points of (constructive) criticism. First of all, the book is a bit too conversational for such a technical work. It feels like a collection of blog posts, and thus also lacks in depth. For example, the section on memory management of Windows is quite disappointing. As much as I can admire the author's attempt to show his exploration process armed by various tracing and monitoring tools, much of this information is well known and has been described. Instead, I would expect a more thorough presentation of the topic. The other problem is the C++ code. C++ code in books is a pet peeve of mine - for some reason it tends to be exceptionally bad in most of them, and this book is no exception. I won't go into examples because there are simply too many, so just a word of advice: if you intend to follow through this book actually implementing the code (always a good idea!) read about the algorithms the author describes, but write your own implementation. There's nothing good to learn from the C++ code in this book, so you might as well get some more practice on your own.
3 of 4 people found the following review helpful:
5.0 out of 5 stars
If you didn't know, now you know,
By Elijah D "dev1zero" (Bothell, WA United States) - See all my reviews
This review is from: Memory Management: Algorithms and Implementations in C/C++ (Windows Programming/Development) (Paperback)
Look out for the name Bill Blunden if you're a systems programmer. In my opinion this man will be one of the best known authors in this area in the next decade. I bought this book thinking all I will get was details on garbage collection algorithms but the author actually takes the reader through memory management at the hardware level in an easy to follow manner. He also reviews how 3 different operating systems actually manage memory.After this, he then jumps into the high level details of memory management for applications. If you're a system programmer, do yourself a favour and buy this book. However, it should be noted that this book is not for the inexperienced. It digs into low level stuff and also assumes that the reader is fluent in C/C++ and assembly.
7 of 10 people found the following review helpful:
5.0 out of 5 stars
The whole enchillada!,
By A Customer
This review is from: Memory Management: Algorithms and Implementations in C/C++ (Windows Programming/Development) (Paperback)
This is probably the only book I have ever bought that actually gave a discussion on protected mode that I could follow. He does keep the discussion basic (flat model, no paging), but it got me over the hurdle. I also liked his high-level memory managers. They were to the point and easy to understand. No fancy syntax, no cryptic pointer swizzling,... just straightforward code. What Blunden provides is a solid foundation that has a low learning threshold. Finally, Blunden speaks to the reader in a casual manner, as if you were sipping high-octane coffee somewhere on El Camino BigNum.
5.0 out of 5 stars
Excellent book,
By
This review is from: Memory Management: Algorithms and Implementations in C/C++ (Windows Programming/Development) (Paperback)
Might not be the book can be put into immediate use, but definitely bring your understanding of memory management to another level, the author has a gift to make complex topic easy to grasp, for example, "Siege Warfare" is used in the case study of Linux to demonstrate memory protection.Where source code is used like the manual memory manager, it's always kept as simple as possible, I appreciate Bill made effort for the reader to "get it" instead of impressing them with syntactic acrobatics. The quotes from the first three chapters are: "Everyone has a photographic memory. Some people just don't have film." -- Mel Brooks "If I could remember the names of all these particles, I'd be a botanist." -- Enrico Fermi "My problem is that I have been persecuted by an integer." -- George A. Miller The author runs out of quote from chapter 4, even thouth, the book still worth a five star given the enlightenment and fun I got from reading, by the way, the author never loses humor even handling the driest topic, makes technical reading an entertainment. The closing quotes at the last page of the book sounds rather like a prophets: "We are the middle children of history, raised by television to believe that someday we'll be millionaires and movie stars and rock stars, but we won't." -- Tyler Durden "In time, you will come to regard me with not only awe and respect, but love." -- Colossus, speaking to Charles Forbin in Colossus: The Forbin Project (1969)
4 of 8 people found the following review helpful:
5.0 out of 5 stars
No holds barred (NHB programming),
By A Customer
This review is from: Memory Management: Algorithms and Implementations in C/C++ (Windows Programming/Development) (Paperback)
As a public servant involved in technical copyright work, I normally don't stray too far from my area of specialy. However, a friend of mine recommended this book and I picked it up at a local bookstore. This book does a nice job of looking at the countless little details that come into play when dealing with a computer's memory. What was once very easy for hackers to fiddle with in 1981 is now a nasty ordeal. Fortunately you'll have this book to guide you. Nice explanation of the A20 address gate. One thing I didn't expect was a look behind all the marketing hype behind Moore's Law. The last chapter is somewhat ominous, and it makes you wonder if the author has been to John Young's web site. TIA is closer than you think... |
|
Most Helpful First | Newest First
|
|
Memory Management: Algorithms and Implementations in C/C++ (Windows Programming/Developmen
t) by Bill Blunden (Paperback - October 4, 2002)
$59.95 $37.77
In Stock | ||