1999-08-16 21:50:52 +00:00
|
|
|
/*
|
1999-12-09 23:27:55 +00:00
|
|
|
**********************************************************************
|
|
|
|
* Copyright (C) 1997-1999, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
**********************************************************************
|
1999-08-16 21:50:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "umutex.h"
|
|
|
|
|
|
|
|
int GlobalMutexInitialize()
|
|
|
|
{
|
|
|
|
umtx_init( NULL );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
static int initializesGlobalMutex = GlobalMutexInitialize();
|
|
|
|
|
|
|
|
|
|
|
|
|