Operations Dev/Food
-
식사하는 철학자Operations Dev/Food 2010. 12. 10. 21:22
// Chapter06.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include #include #include #include using namespace std; int const MAX_FORK = 5; int const MAX_PHILOSOPHER = 5; HANDLE g_forks[ MAX_FORK ]; HANDLE g_room; void eat( string const & philosopher ); void think( string const & philosopher ); unsigned int WINAPI startDinner( LPVOID param ); int _tmain(int ar..