LLVM OpenMP* Runtime Library
kmp_wrapper_getpid.h
1 /*
2  * kmp_wrapper_getpid.h -- getpid() declaration.
3  */
4 
5 //===----------------------------------------------------------------------===//
6 //
7 // The LLVM Compiler Infrastructure
8 //
9 // This file is dual licensed under the MIT and the University of Illinois Open
10 // Source Licenses. See LICENSE.txt for details.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef KMP_WRAPPER_GETPID_H
15 #define KMP_WRAPPER_GETPID_H
16 
17 #if KMP_OS_UNIX
18 
19 // On Unix-like systems (Linux* OS and OS X*) getpid() is declared in standard
20 // headers.
21 #include <sys/syscall.h>
22 #include <sys/types.h>
23 #include <unistd.h>
24 #if KMP_OS_DARWIN
25 // OS X
26 #define __kmp_gettid() syscall(SYS_thread_selfid)
27 #elif KMP_OS_NETBSD
28 #include <lwp.h>
29 #define __kmp_gettid() _lwp_self()
30 #elif defined(SYS_gettid)
31 // Hopefully other Unix systems define SYS_gettid syscall for getting os thread
32 // id
33 #define __kmp_gettid() syscall(SYS_gettid)
34 #else
35 #warning No gettid found, use getpid instead
36 #define __kmp_gettid() getpid()
37 #endif
38 
39 #elif KMP_OS_WINDOWS
40 
41 // On Windows* OS _getpid() returns int (not pid_t) and is declared in
42 // "process.h".
43 #include <process.h>
44 // Let us simulate Unix.
45 #if KMP_MSVC_COMPAT
46 typedef int pid_t;
47 #endif
48 #define getpid _getpid
49 #define __kmp_gettid() GetCurrentThreadId()
50 
51 #else
52 
53 #error Unknown or unsupported OS.
54 
55 #endif
56 
57 /* TODO: All the libomp source code uses pid_t type for storing the result of
58  getpid(), it is good. But often it printed as "%d", that is not good, because
59  it ignores pid_t definition (may pid_t be longer that int?). It seems all pid
60  prints should be rewritten as:
61 
62  printf( "%" KMP_UINT64_SPEC, (kmp_uint64) pid );
63 
64  or (at least) as
65 
66  printf( "%" KMP_UINT32_SPEC, (kmp_uint32) pid );
67 
68  (kmp_uint32, kmp_uint64, KMP_UINT64_SPEC, and KMP_UNIT32_SPEC are defined in
69  "kmp_os.h".) */
70 
71 #endif // KMP_WRAPPER_GETPID_H
72 
73 // end of file //