2003-11-26 15:16:36 +08:00
|
|
|
/* thr_nt.c - wrapper around NT threads */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 15:16:36 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2005-01-02 04:49:32 +08:00
|
|
|
* Copyright 1998-2005 The OpenLDAP Foundation.
|
1999-01-17 23:46:19 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2003-11-26 15:16:36 +08:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1999-01-17 23:46:19 +08:00
|
|
|
*/
|
|
|
|
|
1999-01-15 22:54:25 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#if defined( HAVE_NT_THREADS )
|
|
|
|
|
2000-06-13 10:42:13 +08:00
|
|
|
#include "ldap_pvt_thread.h"
|
1999-06-01 03:59:29 +08:00
|
|
|
|
2004-03-17 13:06:04 +08:00
|
|
|
typedef struct ldap_int_thread_s {
|
|
|
|
long tid;
|
|
|
|
HANDLE thd;
|
|
|
|
} ldap_int_thread_s;
|
|
|
|
|
|
|
|
#ifndef NT_MAX_THREADS
|
|
|
|
#define NT_MAX_THREADS 1024
|
|
|
|
#endif
|
|
|
|
|
2004-03-17 17:59:03 +08:00
|
|
|
static ldap_int_thread_s tids[NT_MAX_THREADS];
|
2004-03-17 13:06:04 +08:00
|
|
|
static int ntids;
|
|
|
|
|
|
|
|
|
2001-12-07 12:03:25 +08:00
|
|
|
/* mingw compiler very sensitive about getting prototypes right */
|
|
|
|
typedef unsigned __stdcall thrfunc_t(void *);
|
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
int
|
2000-06-07 03:59:34 +08:00
|
|
|
ldap_int_thread_initialize( void )
|
1999-01-28 12:34:55 +08:00
|
|
|
{
|
|
|
|
return 0;
|
1999-04-07 05:57:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-07 03:59:34 +08:00
|
|
|
ldap_int_thread_destroy( void )
|
1999-04-07 05:57:16 +08:00
|
|
|
{
|
|
|
|
return 0;
|
1999-01-28 12:34:55 +08:00
|
|
|
}
|
|
|
|
|
1999-01-15 22:54:25 +08:00
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_create( ldap_pvt_thread_t * thread,
|
1999-01-28 12:34:55 +08:00
|
|
|
int detach,
|
|
|
|
void *(*start_routine)( void *),
|
|
|
|
void *arg)
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2001-12-07 12:03:25 +08:00
|
|
|
unsigned tid;
|
2001-05-07 02:58:45 +08:00
|
|
|
HANDLE thd;
|
2004-01-15 17:59:11 +08:00
|
|
|
int rc = -1;
|
2001-05-07 02:58:45 +08:00
|
|
|
|
2003-01-13 22:28:50 +08:00
|
|
|
thd = (HANDLE) _beginthreadex(NULL, LDAP_PVT_THREAD_STACK_SIZE, (thrfunc_t *) start_routine,
|
2001-12-07 12:03:25 +08:00
|
|
|
arg, 0, &tid);
|
2001-05-07 02:58:45 +08:00
|
|
|
|
2004-01-15 17:59:11 +08:00
|
|
|
if ( thd ) {
|
|
|
|
*thread = (ldap_pvt_thread_t) tid;
|
2004-03-17 17:59:03 +08:00
|
|
|
tids[ntids].tid = tid;
|
|
|
|
tids[ntids].thd = thd;
|
2004-03-17 13:06:04 +08:00
|
|
|
ntids++;
|
2004-01-15 17:59:11 +08:00
|
|
|
rc = 0;
|
|
|
|
}
|
|
|
|
return rc;
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_exit( void *retval )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
_endthread( );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_join( ldap_pvt_thread_t thread, void **thread_return )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
DWORD status;
|
2004-03-17 13:06:04 +08:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; i<ntids; i++) {
|
2004-03-17 17:59:03 +08:00
|
|
|
if ( tids[i].tid == thread )
|
2004-03-17 13:06:04 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( i > ntids ) return -1;
|
2004-01-15 17:59:11 +08:00
|
|
|
|
2004-03-17 17:59:03 +08:00
|
|
|
status = WaitForSingleObject( tids[i].thd, INFINITE );
|
2004-03-17 13:06:04 +08:00
|
|
|
for (; i<ntids; i++) {
|
2004-03-17 17:59:03 +08:00
|
|
|
tids[i] = tids[i+1];
|
2004-03-17 13:06:04 +08:00
|
|
|
}
|
|
|
|
ntids--;
|
2000-09-13 04:39:13 +08:00
|
|
|
return status == WAIT_FAILED ? -1 : 0;
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_kill( ldap_pvt_thread_t thread, int signo )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_yield( void )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
1999-07-18 08:33:30 +08:00
|
|
|
Sleep( 0 );
|
1999-01-15 22:54:25 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_init( ldap_pvt_thread_cond_t *cond )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
*cond = CreateEvent( NULL, FALSE, FALSE, NULL );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_destroy( ldap_pvt_thread_cond_t *cv )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
CloseHandle( *cv );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_signal( ldap_pvt_thread_cond_t *cond )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
SetEvent( *cond );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_wait( ldap_pvt_thread_cond_t *cond,
|
|
|
|
ldap_pvt_thread_mutex_t *mutex )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2000-03-11 08:58:10 +08:00
|
|
|
SignalObjectAndWait( *mutex, *cond, INFINITE, FALSE );
|
1999-01-15 22:54:25 +08:00
|
|
|
WaitForSingleObject( *mutex, INFINITE );
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_cond_broadcast( ldap_pvt_thread_cond_t *cond )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2002-06-08 06:45:22 +08:00
|
|
|
while ( WaitForSingleObject( *cond, 0 ) == WAIT_TIMEOUT )
|
|
|
|
SetEvent( *cond );
|
1999-01-15 22:54:25 +08:00
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_init( ldap_pvt_thread_mutex_t *mutex )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
*mutex = CreateMutex( NULL, 0, NULL );
|
|
|
|
return ( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_destroy( ldap_pvt_thread_mutex_t *mutex )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
CloseHandle( *mutex );
|
|
|
|
return ( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( ldap_pvt_thread_mutex_t *mutex )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
2000-09-13 04:39:13 +08:00
|
|
|
DWORD status;
|
|
|
|
status = WaitForSingleObject( *mutex, INFINITE );
|
|
|
|
return status == WAIT_FAILED ? -1 : 0;
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( ldap_pvt_thread_mutex_t *mutex )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
ReleaseMutex( *mutex );
|
|
|
|
return ( 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2000-06-13 10:42:13 +08:00
|
|
|
ldap_pvt_thread_mutex_trylock( ldap_pvt_thread_mutex_t *mp )
|
1999-01-15 22:54:25 +08:00
|
|
|
{
|
|
|
|
DWORD status;
|
|
|
|
status = WaitForSingleObject( *mp, 0 );
|
2000-09-13 04:39:13 +08:00
|
|
|
return status == WAIT_FAILED || status == WAIT_TIMEOUT
|
|
|
|
? -1 : 0;
|
1999-01-15 22:54:25 +08:00
|
|
|
}
|
|
|
|
|
2003-01-24 14:49:13 +08:00
|
|
|
ldap_pvt_thread_t
|
|
|
|
ldap_pvt_thread_self( void )
|
|
|
|
{
|
2004-01-15 17:59:11 +08:00
|
|
|
return GetCurrentThreadId();
|
2003-01-24 14:49:13 +08:00
|
|
|
}
|
|
|
|
|
1999-01-15 22:54:25 +08:00
|
|
|
#endif
|