Monday 12 March 2012

Example-Bounded Buffer


  • Shared data:
                                struct buffer
                                {
                                int pool[n];
                                int count, in, out;
                                }

No comments:

Post a Comment