blob: 70db857bcbae999e226c972e4876a8682c3a52e0 [file] [log] [blame]
Jim Cownie5e8470a2013-09-27 10:38:44 +00001/*
2 * kmp_wrapper_getpid.h -- getpid() declaration.
Jim Cownie5e8470a2013-09-27 10:38:44 +00003 */
4
Jim Cownie5e8470a2013-09-27 10:38:44 +00005//===----------------------------------------------------------------------===//
6//
Chandler Carruth57b08b02019-01-19 10:56:40 +00007// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
8// See https://llvm.org/LICENSE.txt for license information.
9// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Jim Cownie5e8470a2013-09-27 10:38:44 +000010//
11//===----------------------------------------------------------------------===//
12
Jim Cownie5e8470a2013-09-27 10:38:44 +000013#ifndef KMP_WRAPPER_GETPID_H
14#define KMP_WRAPPER_GETPID_H
15
16#if KMP_OS_UNIX
17
Jonathan Peyton30419822017-05-12 18:01:32 +000018// On Unix-like systems (Linux* OS and OS X*) getpid() is declared in standard
19// headers.
20#include <sys/syscall.h>
21#include <sys/types.h>
22#include <unistd.h>
23#if KMP_OS_DARWIN
24// OS X
25#define __kmp_gettid() syscall(SYS_thread_selfid)
Dimitry Andricdab9ed82019-03-25 18:37:14 +000026#elif KMP_OS_FREEBSD
27#include <pthread_np.h>
28#define __kmp_gettid() pthread_getthreadid_np()
Kamil Rytarowski98bdf1f2018-12-11 18:34:33 +000029#elif KMP_OS_NETBSD
30#include <lwp.h>
31#define __kmp_gettid() _lwp_self()
Jonathan Peyton30419822017-05-12 18:01:32 +000032#elif defined(SYS_gettid)
33// Hopefully other Unix systems define SYS_gettid syscall for getting os thread
34// id
35#define __kmp_gettid() syscall(SYS_gettid)
36#else
37#warning No gettid found, use getpid instead
38#define __kmp_gettid() getpid()
39#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +000040
41#elif KMP_OS_WINDOWS
42
Jonathan Peyton30419822017-05-12 18:01:32 +000043// On Windows* OS _getpid() returns int (not pid_t) and is declared in
44// "process.h".
45#include <process.h>
46// Let us simulate Unix.
Andrey Churbanovf700e9e2018-12-10 13:45:00 +000047#if KMP_MSVC_COMPAT
Jonathan Peyton30419822017-05-12 18:01:32 +000048typedef int pid_t;
Andrey Churbanovf700e9e2018-12-10 13:45:00 +000049#endif
Jonathan Peyton30419822017-05-12 18:01:32 +000050#define getpid _getpid
51#define __kmp_gettid() GetCurrentThreadId()
Jim Cownie5e8470a2013-09-27 10:38:44 +000052
53#else
54
Jonathan Peyton30419822017-05-12 18:01:32 +000055#error Unknown or unsupported OS.
Jim Cownie5e8470a2013-09-27 10:38:44 +000056
57#endif
58
Jonathan Peyton30419822017-05-12 18:01:32 +000059/* TODO: All the libomp source code uses pid_t type for storing the result of
60 getpid(), it is good. But often it printed as "%d", that is not good, because
61 it ignores pid_t definition (may pid_t be longer that int?). It seems all pid
62 prints should be rewritten as:
Jim Cownie5e8470a2013-09-27 10:38:44 +000063
Jonathan Peyton30419822017-05-12 18:01:32 +000064 printf( "%" KMP_UINT64_SPEC, (kmp_uint64) pid );
Jim Cownie5e8470a2013-09-27 10:38:44 +000065
Jonathan Peyton30419822017-05-12 18:01:32 +000066 or (at least) as
Jim Cownie5e8470a2013-09-27 10:38:44 +000067
Jonathan Peyton30419822017-05-12 18:01:32 +000068 printf( "%" KMP_UINT32_SPEC, (kmp_uint32) pid );
Jim Cownie5e8470a2013-09-27 10:38:44 +000069
Jonathan Peyton30419822017-05-12 18:01:32 +000070 (kmp_uint32, kmp_uint64, KMP_UINT64_SPEC, and KMP_UNIT32_SPEC are defined in
71 "kmp_os.h".) */
Jim Cownie5e8470a2013-09-27 10:38:44 +000072
73#endif // KMP_WRAPPER_GETPID_H
74
75// end of file //