#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/stat.h>
Go to the source code of this file.
◆ _FCALL
Definition at line 36 of file pid.c.
◆ MY_GETPID()
| void _FCALL MY_GETPID |
( |
int * | pid | ) |
|
Definition at line 56 of file pid.c.
◆ my_getpid()
| void my_getpid |
( |
int * | pid | ) |
|
Definition at line 40 of file pid.c.
42{
43#ifdef _WIN64
44 *pid = _getpid();
45#else
46 *pid = getpid();
47#endif
48}
◆ my_getpid_()
| void my_getpid_ |
( |
int * | pid | ) |
|
Definition at line 50 of file pid.c.
◆ my_getpid__()
| void my_getpid__ |
( |
int * | pid | ) |
|
Definition at line 62 of file pid.c.