LLVM OpenMP* Runtime Library
src
kmp_wrapper_getpid.h
1
/*
2
* kmp_wrapper_getpid.h -- getpid() declaration.
3
*/
4
5
//===----------------------------------------------------------------------===//
6
//
7
// 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
10
//
11
//===----------------------------------------------------------------------===//
12
13
#ifndef KMP_WRAPPER_GETPID_H
14
#define KMP_WRAPPER_GETPID_H
15
16
#if KMP_OS_UNIX
17
18
// 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)
26
#elif KMP_OS_FREEBSD
27
#include <pthread_np.h>
28
#define __kmp_gettid() pthread_getthreadid_np()
29
#elif KMP_OS_NETBSD
30
#include <lwp.h>
31
#define __kmp_gettid() _lwp_self()
32
#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
40
41
#elif KMP_OS_WINDOWS
42
43
// 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.
47
#if KMP_MSVC_COMPAT
48
typedef
int
pid_t;
49
#endif
50
#define getpid _getpid
51
#define __kmp_gettid() GetCurrentThreadId()
52
53
#else
54
55
#error Unknown or unsupported OS.
56
57
#endif
58
59
/* 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:
63
64
printf( "%" KMP_UINT64_SPEC, (kmp_uint64) pid );
65
66
or (at least) as
67
68
printf( "%" KMP_UINT32_SPEC, (kmp_uint32) pid );
69
70
(kmp_uint32, kmp_uint64, KMP_UINT64_SPEC, and KMP_UNIT32_SPEC are defined in
71
"kmp_os.h".) */
72
73
#endif // KMP_WRAPPER_GETPID_H
74
75
// end of file //
Generated by
1.8.13