Outline for May 9, 2007
-
Greetings and felicitations!
-
Types of programs
-
Applications vs. data
-
Database managers
-
Spreadsheet software
-
Word processors
-
Graphics software
-
How Windows XP works
-
Process isolation: each process thinks it's the only one on the computer
-
Virtual memory: if there's not enough RAM, use the disk to store parts of the program not recently used
-
Each program gets its own virtual machine, which accesses physical system to perform some operations:
-
USER.EXE, USER32.DLL control and track windows.
-
GDI.EXE, GDI32.DLL construct graphic elements such as dialog boxes etc.
-
KRNL386.EXE, KERNEL32.DLL handle low-level operations, manage memory, I/O, and interrupts.
-
Kernel mode has file management, network, device drivers, process manager, security, virtual machine manager.
-
Windows XP shares code among programs
-
Makes programs smaller, simpler, and easier to program
-
Dynamic link libraries (DLL) are code loaded as needed by the program, and removed when done
-
Application programmer interface (API) is framework used to call DLL
-
API (application programming interface), and DLL.
-
Windows XP shares data among programs using the Clipboard
-
Data saved to clipboard in three formats: native (format used by application creating the data), Rich Text Format (RTF), and Original Equipment Manufacturer (OEM) with no formatting.
-
Graphics saved to clipboard in three formats: native, bitmap, metafile that can be used to recreate graphic in resolution independent version
-
When you paste, application looks at data in clipboard and chooses which format to use
-
Web browsers
-
URLs
-
Cookies
Here is a PDF version of this document.