1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

- Updated OS/2 port with files provided by Yuri Dario <mc6530@mclink.it>

from TeamOS/2 Italy
- removed some obsolete files on Yuri's request
- Added missing os2 related files outside the os2 subdirectory
  to the distribution
This commit is contained in:
lenz@mysql.com
2002-07-15 18:26:11 +02:00
parent c620486287
commit 3258f23d99
37 changed files with 1083 additions and 3464 deletions

View File

@ -53,6 +53,7 @@ void win_pthread_init(void)
static pthread_handler_decl(pthread_start,param)
{
DBUG_ENTER("pthread_start");
pthread_handler func=((struct pthread_map *) param)->func;
void *func_param=((struct pthread_map *) param)->param;
my_thread_init(); /* Will always succeed in windows */
@ -60,8 +61,10 @@ static pthread_handler_decl(pthread_start,param)
win_pthread_self=((struct pthread_map *) param)->pthreadself;
pthread_mutex_unlock(&THR_LOCK_thread);
free((char*) param); /* Free param from create */
pthread_exit((void*) (*func)(func_param));
return 0; /* Safety */
//pthread_exit((void*) (*func)(func_param));
(*func)(func_param);
DBUG_RETURN(0);
//return 0; /* Safety */
}