2020-06-15 14:18:57 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
2022-03-25 14:11:44 +00:00
|
|
|
│ Copyright 2022 Justine Alexandra Roberts Tunney │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ Permission to use, copy, modify, and/or distribute this software for │
|
|
|
|
│ any purpose with or without fee is hereby granted, provided that the │
|
|
|
|
│ above copyright notice and this permission notice appear in all copies. │
|
2020-06-15 14:18:57 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL │
|
|
|
|
│ WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED │
|
|
|
|
│ WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE │
|
|
|
|
│ AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL │
|
|
|
|
│ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR │
|
|
|
|
│ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER │
|
|
|
|
│ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR │
|
|
|
|
│ PERFORMANCE OF THIS SOFTWARE. │
|
2020-06-15 14:18:57 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
2022-05-23 22:06:11 +00:00
|
|
|
#include "libc/calls/syscall_support-nt.internal.h"
|
2022-04-15 06:39:48 +00:00
|
|
|
#include "libc/intrin/describeflags.internal.h"
|
2022-11-08 18:09:47 +00:00
|
|
|
#include "libc/intrin/strace.internal.h"
|
2022-03-25 14:11:44 +00:00
|
|
|
#include "libc/nt/struct/securityattributes.h"
|
|
|
|
#include "libc/nt/thread.h"
|
2020-06-15 14:18:57 +00:00
|
|
|
|
2022-04-15 06:39:48 +00:00
|
|
|
__msabi extern typeof(CreateThread) *const __imp_CreateThread;
|
2022-03-25 14:11:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Opens file on the New Technology.
|
|
|
|
*
|
2022-04-07 07:15:35 +00:00
|
|
|
* @param dwStackSize may be 0 for default per executable
|
2022-03-25 14:11:44 +00:00
|
|
|
* @return thread handle, or 0 on failure
|
2022-11-08 18:09:47 +00:00
|
|
|
* @note this wrapper takes care of ABI, STRACE()
|
2022-03-25 14:11:44 +00:00
|
|
|
*/
|
|
|
|
textwindows int64_t CreateThread(
|
|
|
|
struct NtSecurityAttributes *lpThreadAttributes, size_t dwStackSize,
|
|
|
|
NtThreadStartRoutine lpStartAddress, void *lpParameter,
|
|
|
|
uint32_t dwCreationFlags, uint32_t *opt_lpThreadId) {
|
|
|
|
int64_t hHandle;
|
|
|
|
hHandle = __imp_CreateThread(lpThreadAttributes, dwStackSize, lpStartAddress,
|
|
|
|
lpParameter, dwCreationFlags, opt_lpThreadId);
|
2022-04-16 17:40:23 +00:00
|
|
|
NTTRACE("CreateThread(%s, %'zu, %p, %p, %s, %p) → %ld% m",
|
|
|
|
DescribeNtSecurityAttributes(lpThreadAttributes), dwStackSize,
|
|
|
|
lpStartAddress, lpParameter, dwCreationFlags, opt_lpThreadId,
|
|
|
|
hHandle);
|
2022-03-25 14:11:44 +00:00
|
|
|
return hHandle;
|
2020-06-15 14:18:57 +00:00
|
|
|
}
|