CSE681 - Software Modeling and Analysis

Lecture #6 - Processes and Threads

Revised: 30 September 2008
Home Courses Code Handouts CoreTech Books Articles Math Research Masters Projects SWDev WebDev News OtherLinks SiteDesign Graduates AllPages Office Hours Notices Contents

CSE681-SWMAA CSE686-IP CSE687-OOD CSE775-DO CSE776-DP CSE778-AWP CSE784-SWS

Lecture #01 Lecture #02 Lecture #03 Lecture #04 Lecture #05 Lecture #06 Lecture #07
Lecture #08 Lecture #09 Lecture #10 Lecture #11 Lecture #12 Lecture #13 Lecture #14

Contents Syllabus

Web Resources:

UML XML, HTML Code Project Microsoft Developer's Network DevelopMentor XML Sells Brothers Windows Developer's Journal Windows Forms DotNetJunkies .Net Quickstarts C# Corner Mono Project

Office Hours: Instructor & TAs

Content:

This lecture is an introduction to processes and threads from both the Win32 and the .Net perspectives. Today we talk about creating processes, creating and using threads, thread safety, and we give a lot of code examples.
  1. The Syllabus describes topics to be covered, reading material for you to digest before coming to class, and due dates for the assigned projects.
  2. Project #3, Project #4
  3. Test Harness Prototype
  4. Excellent Tutorial on C# Threads, Delegate Shortcuts - found by Rijika Tandon
  5. Process diagram, Memory Mapping
  6. Win32 Process Creation
  7. .Net Process Creation
  8. Why threads? demo
  9. Win32 Threads Presentation
  10. .Net Threads Presentation
  11. Queued Messages
  12. Blocking Queue
  13. Thread Problems
  14. Synchronization
  15. .Net FormInvoke Demo
  16. ThreadPool Demo
  17. .Net Worker Thread
  18. Abstract Task Model