thread.c 4.51 KB
Newer Older
1 2 3 4
/*
 * msvcrt.dll thread functions
 *
 * Copyright 2000 Jon Griffiths
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * 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
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 20
 */
#include "msvcrt.h"
21 22 23
#include "wine/debug.h"

WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
24

25 26 27
/********************************************************************/

typedef struct {
28
  MSVCRT__beginthread_start_routine_t start_address;
29 30 31
  void *arglist;
} _beginthread_trampoline_t;

32 33 34 35 36
/*********************************************************************
 *		msvcrt_get_thread_data
 *
 * Return the thread local storage structure.
 */
37
thread_data_t *msvcrt_get_thread_data(void)
38
{
39
    thread_data_t *ptr;
40 41
    DWORD err = GetLastError();  /* need to preserve last error */

42
    if (!(ptr = TlsGetValue( msvcrt_tls_index )))
43 44
    {
        if (!(ptr = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*ptr) )))
45 46
            _amsg_exit( _RT_THREAD );
        if (!TlsSetValue( msvcrt_tls_index, ptr )) _amsg_exit( _RT_THREAD );
47
        ptr->random_seed = 1;
48 49 50 51 52 53
    }
    SetLastError( err );
    return ptr;
}


54 55 56 57 58
/*********************************************************************
 *		_beginthread_trampoline
 */
static DWORD CALLBACK _beginthread_trampoline(LPVOID arg)
{
59 60
    _beginthread_trampoline_t local_trampoline;

61 62
    /* Maybe it's just being paranoid, but freeing arg right
     * away seems safer.
63 64 65 66 67 68
     */
    memcpy(&local_trampoline,arg,sizeof(local_trampoline));
    MSVCRT_free(arg);

    local_trampoline.start_address(local_trampoline.arglist);
    return 0;
69 70 71 72 73
}

/*********************************************************************
 *		_beginthread (MSVCRT.@)
 */
74
MSVCRT_uintptr_t CDECL _beginthread(
75
  MSVCRT__beginthread_start_routine_t start_address, /* [in] Start address of routine that begins execution of new thread */
76 77 78
  unsigned int stack_size, /* [in] Stack size for new thread or 0 */
  void *arglist)           /* [in] Argument list to be passed to new thread or NULL */
{
79
  _beginthread_trampoline_t* trampoline;
80 81 82

  TRACE("(%p, %d, %p)\n", start_address, stack_size, arglist);

83
  /* Allocate the trampoline here so that it is still valid when the thread
84 85 86 87 88 89
   * starts... typically after this function has returned.
   * _beginthread_trampoline is responsible for freeing the trampoline
   */
  trampoline=MSVCRT_malloc(sizeof(*trampoline));
  trampoline->start_address = start_address;
  trampoline->arglist = arglist;
90 91

  /* FIXME */
92
  return (MSVCRT_uintptr_t)CreateThread(NULL, stack_size, _beginthread_trampoline,
93
				     trampoline, 0, NULL);
94
}
95 96 97 98

/*********************************************************************
 *		_beginthreadex (MSVCRT.@)
 */
99
MSVCRT_uintptr_t CDECL _beginthreadex(
100 101
  void *security,          /* [in] Security descriptor for new thread; must be NULL for Windows 9x applications */
  unsigned int stack_size, /* [in] Stack size for new thread or 0 */
102
  MSVCRT__beginthreadex_start_routine_t start_address, /* [in] Start address of routine that begins execution of new thread */
103 104 105 106 107 108 109
  void *arglist,           /* [in] Argument list to be passed to new thread or NULL */
  unsigned int initflag,   /* [in] Initial state of new thread (0 for running or CREATE_SUSPEND for suspended) */
  unsigned int *thrdaddr)  /* [out] Points to a 32-bit variable that receives the thread identifier */
{
  TRACE("(%p, %d, %p, %p, %d, %p)\n", security, stack_size, start_address, arglist, initflag, thrdaddr);

  /* FIXME */
110
  return (MSVCRT_uintptr_t)CreateThread(security, stack_size,
111 112
				     start_address, arglist,
				     initflag, thrdaddr);
113 114 115 116 117
}

/*********************************************************************
 *		_endthread (MSVCRT.@)
 */
118
void CDECL _endthread(void)
119
{
120 121
  TRACE("(void)\n");

122
  /* FIXME */
123
  ExitThread(0);
124 125 126 127 128
}

/*********************************************************************
 *		_endthreadex (MSVCRT.@)
 */
129
void CDECL _endthreadex(
130
  unsigned int retval) /* [in] Thread exit code */
131
{
132 133
  TRACE("(%d)\n", retval);

134 135 136
  /* FIXME */
  ExitThread(retval);
}