ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/BeOS/main_beos.cpp
(Generate patch)

Comparing BasiliskII/src/BeOS/main_beos.cpp (file contents):
Revision 1.9 by cebix, 2001-06-30T17:21:53Z vs.
Revision 1.10 by cebix, 2001-07-03T15:59:46Z

# Line 469 | Line 469 | void FlushCodeCache(void *start, uint32
469  
470  
471   /*
472 + *  Mutexes
473 + */
474 +
475 + struct B2_mutex {
476 +        int dummy;      //!!
477 + };
478 +
479 + B2_mutex *B2_create_mutex(void)
480 + {
481 +        return new B2_mutex;
482 + }
483 +
484 + void B2_lock_mutex(B2_mutex *mutex)
485 + {
486 + }
487 +
488 + void B2_unlock_mutex(B2_mutex *mutex)
489 + {
490 + }
491 +
492 + void B2_delete_mutex(B2_mutex *mutex)
493 + {
494 +        delete mutex;
495 + }
496 +
497 +
498 + /*
499   *  Interrupt flags (must be handled atomically!)
500   */
501  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines