4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 12:59:21 +08:00
newlib-cygwin/winsup/cygwin/local_includes/create_posix_thread.h

22 lines
533 B
C
Raw Normal View History

/* create_posix_thread.h
This file is part of Cygwin.
This software is a copyrighted work licensed under the terms of the
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
details. */
#pragma once
extern "C"
{
PVOID create_new_main_thread_stack (PVOID &allocationbase);
DWORD pthread_wrapper (PVOID arg);
HANDLE create_posix_thread (LPTHREAD_START_ROUTINE thread_func,
PVOID thread_arg, PVOID stackaddr,
ULONG stacksize, ULONG guardsize,
DWORD creation_flags, LPDWORD thread_id);
}