sortix-mirror/libc/pthread/pthread_self.c

39 lines
1.3 KiB
C
Raw Normal View History

2013-09-15 15:20:28 +00:00
/*******************************************************************************
Copyright(C) Jonas 'Sortie' Termansen 2013.
This file is part of the Sortix C Library.
2013-09-15 15:20:28 +00:00
The Sortix C 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 3 of the License, or (at your
2013-09-15 15:20:28 +00:00
option) any later version.
The Sortix C Library is distributed in the hope that it will be useful, but
2013-09-15 15:20:28 +00:00
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 the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
2013-09-15 15:20:28 +00:00
pthread/pthread_self.c
2013-09-15 15:20:28 +00:00
Returns the identity of the current thread.
*******************************************************************************/
#include <pthread.h>
pthread_t pthread_self(void)
2013-09-15 15:20:28 +00:00
{
pthread_t current_thread;
#if defined(__i386__)
asm ( "mov %%gs:0, %0" : "=r"(current_thread));
#elif defined(__x86_64__)
asm ( "mov %%fs:0, %0" : "=r"(current_thread));
#else
#error "You need to implement pthread_self for your platform"
#endif
return current_thread;
}