home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / common / mutex.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1999-08-16  |  1.0 KB  |  25 lines

  1. /*
  2. *****************************************************************************************
  3. *                                                                                       *
  4. * COPYRIGHT:                                                                            *
  5. *   (C) Copyright Taligent, Inc.,  1997                                                 *
  6. *   (C) Copyright International Business Machines Corporation,  1997-1998               *
  7. *   Licensed Material - Program-Property of IBM - All Rights Reserved                   *
  8. *   US Government Users Restricted Rights - Use, duplication, or disclosure             *
  9. *   restricted by GSA ADP Schedule Contract with IBM Corp                               *
  10. *                                                                                       *
  11. *****************************************************************************************
  12. */
  13.  
  14. #include "umutex.h"
  15.  
  16. int GlobalMutexInitialize()
  17. {
  18.   umtx_init( NULL );
  19.   return 0;
  20. }
  21. static int initializesGlobalMutex = GlobalMutexInitialize();
  22.  
  23.  
  24.  
  25.