How Software Gets Done  


(No Login on Secured Page)

Custom Software Buyers
Request new bids
Search Coders
My Account
 
My Buyer 'To Do' List
 
My bid requests
  My escrow account
 
My General Info
Verification
 
Help for Buyers
Articles for Buyers
FAQ for Buyers
Latest News
 

Custom Software Coders

Newest open work
Browse all work
Search all work
My Account
 
My Coder 'To Do' List
 
My bids
 
My General Info
  My credit account
 
Help for Coders
Articles for Coders
FAQ for Coders
Latest News
 

Affiliates

My account
 
My pipeline
 
My credit account
 
Help for Affiliates
Latest News
 
Newest Open Bid Requests.
Easy C++ Programs
By Lonaedan on May 28
Max Bid: Open to fair suggestions


Other Language Support
By dadress on May 28
Max Bid: Open to fair suggestions


Logo revision - needed in the next day or two!
By 1212Kenwood on May 28
Max Bid: $25

(Screen Shot)

Dark age of camelot spellcrafting aid.
By CGrant on May 28
Max Bid: $100


Ebook Cover Designer Software
By RogerWilco on May 28
Max Bid: Open to fair suggestions


Get Default Font for JAVA
By InProd on May 28
Max Bid: $5


Click here to put this ticker on your own site

Open Work Categories.
Database 
(144 open)
   Access 
(48 open)
   MySQL 
(69 open)
   Oracle 
(6 open)
   SQL Server 
(49 open)
   Other DB 
(21 open)
Documentation / Tech Writing 
(22 open)
Data Entry 
(23 open)
Game Development 
(15 open)
Graphics / Art / Music 
(56 open)
   Graphics 
(54 open)
     3d Animation 
(18 open)
   Art (Misc.) 
(14 open)
   Music 
(14 open)
   3d Modeling 
(13 open)
Language Specific 
(123 open)
   ASP 
(54 open)
   ASP .NET 
(23 open)
   C# 
(38 open)
   C++ / C 
(113 open)
   Carbon (Mac OS) 
(2 open)
   Cocoa / Obj-C 
(1 open)
   Cold Fusion 
(9 open)
   Delphi 
(40 open)
   Java 
(66 open)
   JSP 
(6 open)
   Perl 
(39 open)
   PHP 
(86 open)
   XML/XSL 
(28 open)
   Visual Basic 
(139 open)
   Visual Basic .Net 
(56 open)
   Other 
(52 open)
Misc 
(38 open)
   CAD 
(6 open)
MultiMedia 
(29 open)
Network 
(36 open)
   Network Design 
(9 open)
   Network Implementation 
(8 open)
Platforms 
(80 open)
   Windows 
(159 open)
     MS Exchange 
(6 open)
     MS Office 
(13 open)
     Other 
(14 open)
   Darwin 
(4 open)
   Internet Browser 
(46 open)
   Linux 
(51 open)
   UNIX 
(28 open)
   Hand Held/PDA Programming 
(11 open)
Requirements 
(12 open)
Security 
(34 open)
Testing / Quality Assurance 
(14 open)
Web 
(156 open)
   Page Design 
(77 open)
   Flash 
(59 open)
   Web Services 
(62 open)
   Web (Other) 
(86 open)
Training 
(11 open)
   Computer Based 
(14 open)
 
Other
 
Other Sites

Download the free Rent A Coder IE toolbar!
 
Show Bid Request

c++ and win32 API to simulate the function of snoopy caches
Bid Request Id: 49624
Bookmark in my 'To Do' list
Posted by: alzoub1 (47 ratings)
(Software buyer rating 9.95)
Non-action Ratio: Very Good - 5.77%
Posted: Feb 23, 2003
2:48:38 AM EDT
Bidding Closes: Feb 26, 2003
3:07:12 AM EDT
Viewed (by coders): 96 times
Deadline: 2/27/2003
TIME EXPIRED
Phase:
100% of work completed and accepted. Coder has been paid.
Max Accepted Bid: Bidding is closed
Project Type: Personal Project / Homework Help
Bidding Type: Open Auction
Categories: C++ / C
Enter chat room for this bid request
(0 active users at May 28, 2003 11:30:06 PM EDT)

Description:
please see attachment


Write a program in C++ and Win32 API to simulate the function of snoopy caches.

Your program actually contains four files, each representing a process. Among the four processes, three of them perform the operation of cache controllers and the fourth one performs the operation of a memory controller. Win32 API socket message passing mechanism is used to simulate the operation of automatic detection of modified data in a cache.


>cpsc735p3m1 {this is the memory controller}
>cpsc735p3c1 {this is the first cache controller}
>cpsc735p3c2 {this is the second cache controller}
>cpsc735p3c3 {this is the third cache controller}
>s(a,3) {in m1 console}
>s(b,1) {in m1 console}
>w(a,4) {in c2 console}
>r(a) {in c3 console}
>w(a,5) {in c3 console}
>s(c,2) {in m1 console}
>r(c) {in c2 console}
>r(c) {in c1 console}
>s(d,6) {in m1 console}
>w(d,7) {in c2 console}
>w(c,8) {in c1 console}
>r(a) {in c2 console}
>p {in c1 console}
c = 8


>p {in c2 console}
a = 5
c = invalidated
d = 7
>p {in c3 console}
a = 5
>p {in m1 console}
a = 5
b = 1
c = 8
d = 7
>exit
>



Deliverables:

Pseudo code for r(v)
if the variableis in the cache then
if the variable is invalidated then{
the cache controler sends a message to the memory controler
the memory controler sends a variable to the cache controler
the cache controler update the varaibles in the cache
the cache controler validates the variable in the cache
}
else{
the cache controler sends a message to the memory controler
the memory controler sends a variable to the cache controler
the cache controler stores the value in the cache

}
psudeocode for w(v,i)
if the variableis in the cache then{
the cache controler update the varaibles in the cache
the cache controler sends a message to the memory controler
the memory controler updates the variable in memory
the cache controler sends a n invalidations message to all other cache controlers;
those cache controlers having a copy of the variable invaldate the variable
}
else{
the cache controler sends a message to the memory controler
the memory controler update the varaibles in the memory
the memory controler sends a variable to the cache controler
the cache controler stores the value in the cache
the cache controler sends a n invalidations message to all other cache controlers;
those cache controlers having a copy of the variable invaldate the variable










1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done.



3) Complete ownership and distribution copyrights to all work purchased.



Platform:
xp ,mel

Must be 100% finished and received by buyer on:
Feb 27, 2003 EDT
Deadline legal notes: All times are expressed in the time zone of the site EDT (UT - 5). If the buyer omitted a time, then the deadline is 11:59:59 PM EDT on the indicated date.

Additional Files:
This bid request includes IMPORTANT additional attached files. Please download and read fully before bidding.



Remember that contacting the other party outside of the site (by email, phone, etc.) on all business projects < $500 (before the buyer's money is escrowed) is a violation of both the software buyer and seller agreements. We monitor all site activity for such violations and can instantly expel transgressers on the spot, so we thank you in advance for your cooperation. If you notice a violation please help out the site and report it. Thanks for your help.
 
Bidding/Comments:
All monetary amounts on the site are in United States dollars.
Rent a Coder is a closed auction, so coders can only see their own bids and comments. Buyers can view every posting made on their bid requests.

See all rejected bids (and all comments)
Name   Bid Amount 
 
Date   Coder Rating  
This bid was accepted by the buyer!
Navendu
(23 ratings)
in Pune, Maharashtra
India
Bid id: 533,517
 
$10 (USD) Feb 23, 2003
1:47:40 PM EDT
 6.26
(Above Average)
   
Hi

I can modify the attached application to the requirements that you have mentioned.

Regards
Navendu

 
 
 
 
  See 1 private reply(ies)
to/from Navendu.
 




Quick Search
 

 Advanced Search
Newest Open Work
Latest News

 
Credentials


 

 
Rent A Coder upholds the rigorous business practices required to be both a BBB member and Square Trade vendor.
  • All customer issues addressed within 2 days
  • Openly disclosed pricing and return policies
  • Participation in mediation at buyer request
  • Superior selling track record
This site is verified through its parent company, Exhedra Solutions, Inc.
 

Rent A Coder Top Coders.


Securenext
Rated a 9.98 on 100 jobs 
Anuj Gakhar
Rated a 9.98 on 94 jobs 
Codman
Rated a 9.97 on 146 jobs 
Buddies
Rated a 9.82 on 76 jobs 
Andrei Remenchuk
Rated a 10 on 12 jobs 
Michael Sharp
Rated a 9.98 on 180 jobs 
RNA
Rated a 9.92 on 37 jobs 
markesh
Rated a 10 on 22 jobs 
teleCODERS
Rated a 9.93 on 67 jobs 
hernest
Rated a 10 on 109 jobs 

See all top coders...

(What makes a top coder?)

Top Exam Scorers
 
Other
Rent A Coder is PayPal verified through its parent company, Exhedra Solutions, Inc.

Created in partnership with:

 


Affiliate Sites



Latest News | About Us | Kudos | Feedback/Contact    Affiliates | Advertise    Privacy | Legal

Copyright © 2001, Exhedra Solutions, Inc. All rights reserved.
By using this site you agree to its Terms and Conditions.
"Rent A Coder" (tm), "Safe Project Escrow" (tm) and "How Software Gets Done" (tm)
are trademarks of Exhedra Solutions, Inc.