2002-02-21 21:22:00 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2002, TransGaming Technologies Inc.
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2002-02-21 21:22:00 +01:00
|
|
|
*/
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2002-02-21 21:22:00 +01:00
|
|
|
#include "mtdll.h"
|
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
2002-02-21 21:22:00 +01:00
|
|
|
#include "winbase.h"
|
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
|
2002-02-21 21:22:00 +01:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2002-06-01 01:06:46 +02:00
|
|
|
BOOL bInit;
|
2002-02-21 21:22:00 +01:00
|
|
|
CRITICAL_SECTION crit;
|
|
|
|
} LOCKTABLEENTRY;
|
|
|
|
|
|
|
|
static LOCKTABLEENTRY lock_table[ _TOTAL_LOCKS ];
|
|
|
|
|
|
|
|
static inline void msvcrt_mlock_set_entry_initialized( int locknum, BOOL initialized )
|
|
|
|
{
|
|
|
|
lock_table[ locknum ].bInit = initialized;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void msvcrt_initialize_mlock( int locknum )
|
|
|
|
{
|
|
|
|
InitializeCriticalSection( &(lock_table[ locknum ].crit) );
|
2002-06-01 01:06:46 +02:00
|
|
|
msvcrt_mlock_set_entry_initialized( locknum, TRUE );
|
2002-02-21 21:22:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void msvcrt_uninitialize_mlock( int locknum )
|
|
|
|
{
|
|
|
|
DeleteCriticalSection( &(lock_table[ locknum ].crit) );
|
|
|
|
msvcrt_mlock_set_entry_initialized( locknum, FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* msvcrt_init_mt_locks (internal)
|
|
|
|
*
|
2002-06-01 01:06:46 +02:00
|
|
|
* Initialize the table lock. All other locks will be initialized
|
2002-02-21 21:22:00 +01:00
|
|
|
* upon first use.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void msvcrt_init_mt_locks(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
TRACE( "initializing mtlocks\n" );
|
|
|
|
|
|
|
|
/* Initialize the table */
|
|
|
|
for( i=0; i < _TOTAL_LOCKS; i++ )
|
|
|
|
{
|
|
|
|
msvcrt_mlock_set_entry_initialized( i, FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize our lock table lock */
|
2002-06-01 01:06:46 +02:00
|
|
|
msvcrt_initialize_mlock( _LOCKTAB_LOCK );
|
2002-02-21 21:22:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* msvcrt_free_mt_locks (internal)
|
|
|
|
*
|
|
|
|
* Uninitialize all mt locks. Assume that neither _lock or _unlock will
|
|
|
|
* be called once we're calling this routine (ie _LOCKTAB_LOCK can be deleted)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void msvcrt_free_mt_locks(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
TRACE( ": uninitializing all mtlocks\n" );
|
|
|
|
|
|
|
|
/* Uninitialize the table */
|
|
|
|
for( i=0; i < _TOTAL_LOCKS; i++ )
|
|
|
|
{
|
2004-12-09 15:07:59 +01:00
|
|
|
if( lock_table[ i ].bInit )
|
2002-02-21 21:22:00 +01:00
|
|
|
{
|
|
|
|
msvcrt_uninitialize_mlock( i );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* _lock (MSVCRT.@)
|
|
|
|
*/
|
|
|
|
void _lock( int locknum )
|
|
|
|
{
|
|
|
|
TRACE( "(%d)\n", locknum );
|
|
|
|
|
|
|
|
/* If the lock doesn't exist yet, create it */
|
|
|
|
if( lock_table[ locknum ].bInit == FALSE )
|
|
|
|
{
|
|
|
|
/* Lock while we're changing the lock table */
|
|
|
|
_lock( _LOCKTAB_LOCK );
|
|
|
|
|
|
|
|
/* Check again if we've got a bit of a race on lock creation */
|
|
|
|
if( lock_table[ locknum ].bInit == FALSE )
|
|
|
|
{
|
|
|
|
TRACE( ": creating lock #%d\n", locknum );
|
|
|
|
msvcrt_initialize_mlock( locknum );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unlock ourselves */
|
|
|
|
_unlock( _LOCKTAB_LOCK );
|
|
|
|
}
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
EnterCriticalSection( &(lock_table[ locknum ].crit) );
|
2002-02-21 21:22:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
* _unlock (MSVCRT.@)
|
|
|
|
*
|
|
|
|
* NOTE: There is no error detection to make sure the lock exists and is acquired.
|
|
|
|
*/
|
|
|
|
void _unlock( int locknum )
|
|
|
|
{
|
|
|
|
TRACE( "(%d)\n", locknum );
|
|
|
|
|
|
|
|
LeaveCriticalSection( &(lock_table[ locknum ].crit) );
|
|
|
|
}
|
|
|
|
|