summaryrefslogtreecommitdiffhomepage
path: root/src/thread/nt64/pthread_self.c
blob: ed913e8169b3008e86f88ebd19cf46deec678f55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**************************************************************************/
/*  mmglue: midipix architecture- and target-specific bits for musl libc  */
/*  Copyright (C) 2013--2023  SysDeer Technologies, LLC                   */
/*  Released under GPLv2 and GPLv3; see COPYING.MMGLUE.                   */
/**************************************************************************/

#include "pthread_impl.h"
#include <threads.h>
#include "libc.h"

pthread_t pthread_self()
{
	return __pthread_self();
}

weak_alias(pthread_self, thrd_current);