source: azure_iot_hub/trunk/musl-1.1.18/src/thread/pthread_self.c@ 390

Last change on this file since 390 was 390, checked in by coas-nagasima, 5 years ago

コードを整理

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 242 bytes
Line 
1#include "pthread_impl.h"
2#include <threads.h>
3#include "libc.h"
4
5static pthread_t __pthread_self_internal()
6{
7 return __pthread_self();
8}
9
10weak_alias(__pthread_self_internal, pthread_self);
11weak_alias(__pthread_self_internal, thrd_current);
Note: See TracBrowser for help on using the repository browser.